[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 53e46632a9
commit 6f8a9a0f81
2 changed files with 2 additions and 2 deletions

View file

@ -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,

View file

@ -110,7 +110,7 @@ export const visualKeymap = Prec.highest(
return {
changes: { from, insert },
range: EditorSelection.cursor(pos),
range: EditorSelection.cursor(pos, -1),
}
}