Merge carets after doc:move-to-{previous,next}-char (#1462)

This commit is contained in:
Guldoman
2023-08-19 12:43:56 +08:00
committed by takase1121
parent 8e57b71118
commit 97f3159415
+2
View File
@@ -700,6 +700,7 @@ commands["doc:move-to-previous-char"] = function(dv)
dv.doc:move_to_cursor(idx, translate.previous_char)
end
end
dv.doc:merge_cursors()
end
commands["doc:move-to-next-char"] = function(dv)
@@ -710,6 +711,7 @@ commands["doc:move-to-next-char"] = function(dv)
dv.doc:move_to_cursor(idx, translate.next_char)
end
end
dv.doc:merge_cursors()
end
command.add("core.docview", commands)