Merge carets after `doc:move-to-{previous,next}-char` (#1462)
This commit is contained in:
parent
8e57b71118
commit
97f3159415
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue