bf.love/0020-editor_to_string

3 lines
123 B
Plaintext

editor_to_string = function(editor)
return table.concat(map(editor.lines, function(line) return line.data end), '\n')
end