From 3a10f971e99e9c1940eed05b7f19bae2e30e9bee Mon Sep 17 00:00:00 2001 From: Harishankar G <67601573+voiceroy@users.noreply.github.com> Date: Wed, 3 Apr 2024 23:10:55 +0530 Subject: [PATCH] Use a boolean to indicate whether to yank during deletion of a selection (#10132) --- helix-term/src/commands.rs | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 7667fcd80e771..5e7a74982a311 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -2606,13 +2606,13 @@ fn selection_is_linewise(selection: &Selection, text: &Rope) -> bool { }) } -fn delete_selection_impl(cx: &mut Context, op: Operation) { +fn delete_selection_impl(cx: &mut Context, op: Operation, yank: bool) { let (view, doc) = current!(cx.editor); let selection = doc.selection(view.id); let only_whole_lines = selection_is_linewise(selection, doc.text()); - if cx.register != Some('_') { + if cx.register != Some('_') && yank { // first yank the selection let text = doc.text().slice(..); let values: Vec = selection.fragments(text).map(Cow::into_owned).collect(); @@ -2689,21 +2689,19 @@ fn delete_by_selection_insert_mode( } fn delete_selection(cx: &mut Context) { - delete_selection_impl(cx, Operation::Delete); + delete_selection_impl(cx, Operation::Delete, true); } fn delete_selection_noyank(cx: &mut Context) { - cx.register = Some('_'); - delete_selection_impl(cx, Operation::Delete); + delete_selection_impl(cx, Operation::Delete, false); } fn change_selection(cx: &mut Context) { - delete_selection_impl(cx, Operation::Change); + delete_selection_impl(cx, Operation::Change, true); } fn change_selection_noyank(cx: &mut Context) { - cx.register = Some('_'); - delete_selection_impl(cx, Operation::Change); + delete_selection_impl(cx, Operation::Change, false); } fn collapse_selection(cx: &mut Context) {