Revert "Make pasting multiple lines from clipboard same way as a single line"

This reverts commit 6a135f7c06.
This commit is contained in:
Jipok 2021-12-12 02:23:47 +05:00
parent 6a135f7c06
commit 7381a13d6f
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ local commands = {
whole_line = core.cursor_clipboard_whole_line[idx] == true
else
value = clipboard
whole_line = false
whole_line = clipboard:find("\n") ~= nil
end
if whole_line then
doc():insert(line1, 1, value:gsub("\r", ""))