aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/commands.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-09-28 16:01:27 +0000
committerBlaž Hrastnik2020-09-28 16:01:27 +0000
commit36e7e2133fe1d472600cfd935b8046b8d50146c2 (patch)
tree887eb91b778bce0ec4a07d3a3c41cb53376579fb /helix-view/src/commands.rs
parent3020077da8efbf914a9cb0a2cbb50362d339a39a (diff)
Split selection on regex, fix InputEdit generation.
Diffstat (limited to 'helix-view/src/commands.rs')
-rw-r--r--helix-view/src/commands.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/helix-view/src/commands.rs b/helix-view/src/commands.rs
index d868a17c..fc18e3a7 100644
--- a/helix-view/src/commands.rs
+++ b/helix-view/src/commands.rs
@@ -1,8 +1,11 @@
use helix_core::{
graphemes,
+ regex::Regex,
+ selection,
state::{Direction, Granularity, Mode, State},
Range, Selection, Tendril, Transaction,
};
+use once_cell::sync::Lazy;
use crate::view::View;
@@ -144,6 +147,14 @@ pub fn extend_line_down(view: &mut View, count: usize) {
.extend_selection(Direction::Forward, Granularity::Line, count);
}
+pub fn split_selection_on_newline(view: &mut View, _count: usize) {
+ let text = &view.state.doc.slice(..);
+ // only compile the regex once
+ static REGEX: Lazy<Regex> = Lazy::new(|| Regex::new(r"\n").unwrap());
+ // TODO: use a transaction
+ view.state.selection = selection::split_on_matches(text, view.state.selection(), &REGEX)
+}
+
pub fn delete_selection(view: &mut View, _count: usize) {
let transaction =
Transaction::change_by_selection(&view.state, |range| (range.from(), range.to(), None));