Rebased, and added the ability for ctrl to just create new cursors.

This commit is contained in:
Adam Harrison
2021-06-18 17:33:55 -04:00
parent 292c98935c
commit 704e04396f
2 changed files with 7 additions and 3 deletions
+2 -2
View File
@@ -384,7 +384,7 @@ local commands = {
end
os.remove(filename)
core.log("Removed \"%s\"", filename)
end
end,
["doc:create-cursor-previous-line"] = function()
split_cursor(-1)
@@ -394,7 +394,7 @@ local commands = {
["doc:create-cursor-next-line"] = function()
split_cursor(1)
doc():merge_cursors()
end,
end
}