[visual] Improve cursor position in empty list items (#20611)

GitOrigin-RevId: 08a83b509e217573f680ca4a635d9480ade9b1ae
This commit is contained in:
Alf Eaton
2024-09-25 12:18:35 +01:00
committed by Copybot
parent 70aa76d930
commit 8f705ddc6d
2 changed files with 2 additions and 2 deletions
@@ -69,7 +69,7 @@ const wrapRangeInList = (
]
// map through the prefix
range = EditorSelection.cursor(range.to).map(state.changes(changes), 1)
range = EditorSelection.cursor(range.to, -1).map(state.changes(changes), 1)
changes.push({
from: toLine.to,
@@ -110,7 +110,7 @@ export const visualKeymap = Prec.highest(
return {
changes: { from, insert },
range: EditorSelection.cursor(pos),
range: EditorSelection.cursor(pos, -1),
}
}