diff options
Diffstat (limited to 'helix-term/src/commands.rs')
-rw-r--r-- | helix-term/src/commands.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index d75fd694..507e5be6 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1167,6 +1167,14 @@ pub fn keep_selections(cx: &mut Context) { cx.push_layer(Box::new(prompt)); } +pub fn keep_primary_selection(cx: &mut Context) { + let doc = cx.doc(); + + let range = doc.selection().primary(); + let selection = Selection::single(range.anchor, range.head); + doc.set_selection(selection); +} + // pub fn save(cx: &mut Context) { |