mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
feat: add delete surrounding tag functionality
This commit is contained in:
parent
6e4d022e98
commit
2a61b113de
@ -5768,8 +5768,6 @@ fn surround_replace(cx: &mut Context) {
|
||||
}),
|
||||
);
|
||||
|
||||
// we don't need to touch this
|
||||
// document.set_selection(view.id, *copy_selection);
|
||||
document.apply(&transaction, view.id);
|
||||
context.editor.mode = Mode::Normal;
|
||||
},
|
||||
@ -5846,19 +5844,45 @@ fn surround_delete(cx: &mut Context) {
|
||||
let text = doc.text().slice(..);
|
||||
let selection = doc.selection(view.id);
|
||||
|
||||
let mut change_pos =
|
||||
match surround::get_surround_pos(doc.syntax(), text, selection, surround_ch, count) {
|
||||
if surround_ch.is_some_and(|ch| ch == 'x') {
|
||||
let change_pos = match surround::get_surround_pos_tag(text, &selection, count) {
|
||||
Ok(c) => c,
|
||||
Err(err) => {
|
||||
cx.editor.set_error(err.to_string());
|
||||
return;
|
||||
}
|
||||
};
|
||||
change_pos.sort_unstable(); // the changeset has to be sorted to allow nested surrounds
|
||||
let transaction =
|
||||
Transaction::change(doc.text(), change_pos.into_iter().map(|p| (p, p + 1, None)));
|
||||
doc.apply(&transaction, view.id);
|
||||
exit_select_mode(cx);
|
||||
let transaction = Transaction::change(
|
||||
doc.text(),
|
||||
change_pos.iter().flat_map(|(pos, _)| {
|
||||
let opening_range = pos.0;
|
||||
let closing_range = pos.1;
|
||||
|
||||
vec![
|
||||
// add extra numbers to account for "<", ">" and "/" characters
|
||||
(opening_range.from() - 1, opening_range.to() + 1, None),
|
||||
(closing_range.from() - 2, closing_range.to() + 1, None),
|
||||
]
|
||||
}),
|
||||
);
|
||||
doc.apply(&transaction, view.id);
|
||||
exit_select_mode(cx);
|
||||
} else {
|
||||
let mut change_pos =
|
||||
match surround::get_surround_pos(doc.syntax(), text, selection, surround_ch, count)
|
||||
{
|
||||
Ok(c) => c,
|
||||
Err(err) => {
|
||||
cx.editor.set_error(err.to_string());
|
||||
return;
|
||||
}
|
||||
};
|
||||
change_pos.sort_unstable(); // the changeset has to be sorted to allow nested surrounds
|
||||
let transaction =
|
||||
Transaction::change(doc.text(), change_pos.into_iter().map(|p| (p, p + 1, None)));
|
||||
doc.apply(&transaction, view.id);
|
||||
exit_select_mode(cx);
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user