diff options
author | Blaž Hrastnik | 2021-03-03 08:55:56 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-03 08:55:56 +0000 |
commit | 4c6611f96b6a7d3e27bfb0c8e43d49f62dde493b (patch) | |
tree | 2adf5e8293d37aa3cb41de1b8da9a58dd616d09e /helix-term/src/commands.rs | |
parent | a21d96e7293e32c0d20e8548a65fdd31f92b642d (diff) |
commands: Stop select_regex from breaking when no matches.
Diffstat (limited to 'helix-term/src/commands.rs')
-rw-r--r-- | helix-term/src/commands.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index bbd78092..cb811c98 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -307,11 +307,9 @@ pub fn select_all(cx: &mut Context) { pub fn select_regex(cx: &mut Context) { let prompt = ui::regex_prompt(cx, "select:".to_string(), |doc, regex| { let text = doc.text().slice(..); - // TODO: if select on matches returns empty range, we need to abort - // if regex empty or no matches, return - let selection = - selection::select_on_matches(text, doc.selection(), ®ex).expect("no matches"); - doc.set_selection(selection); + if let Some(selection) = selection::select_on_matches(text, doc.selection(), ®ex) { + doc.set_selection(selection); + } }); cx.push_layer(Box::new(prompt)); |