vim: Support s on selections and with multiple cursors

This commit is contained in:
Conrad Irwin 2023-06-21 15:44:19 -06:00
parent dcca98b5cc
commit e1f975e52e
3 changed files with 23 additions and 12 deletions

View file

@ -481,17 +481,17 @@ pub(crate) fn normal_replace(text: Arc<str>, cx: &mut WindowContext) {
pub fn substitute(vim: &mut Vim, count: usize, cx: &mut WindowContext) {
vim.update_active_editor(cx, |editor, cx| {
editor.transact(cx, |editor, cx| {
let selection = editor.selections.newest::<Point>(cx);
let end = if selection.start == selection.end {
selection.start + Point::new(0, 1)
} else {
selection.end
};
editor.buffer().update(cx, |buffer, cx| {
buffer.edit([(selection.start..end, "")], None, cx)
})
let selections = editor.selections.all::<Point>(cx);
for selection in selections.into_iter().rev() {
let end = if selection.start == selection.end {
selection.start + Point::new(0, 1)
} else {
selection.end
};
editor.buffer().update(cx, |buffer, cx| {
buffer.edit([(selection.start..end, "")], None, cx)
})
}
})
});
vim.switch_mode(Mode::Insert, true, cx)