Add command to merge non-consecutive ranges (#7053)
* Add command for merging non-consecutive ranges * Add `merge_selections` command to book * Simplify `merge_ranges` Heeded the advice of @the-mikedavis to stop iterating over all ranges and simply merge the first and the last range, as the invariants of `Selection` guarantee that the list of ranges is always sorted and never empty. * Clarify doc comment of `merge_ranges`
This commit is contained in:
parent
e4a9bec562
commit
70e4cdbd8e
4 changed files with 18 additions and 2 deletions
|
@ -111,7 +111,8 @@
|
||||||
| `s` | Select all regex matches inside selections | `select_regex` |
|
| `s` | Select all regex matches inside selections | `select_regex` |
|
||||||
| `S` | Split selection into sub selections on regex matches | `split_selection` |
|
| `S` | Split selection into sub selections on regex matches | `split_selection` |
|
||||||
| `Alt-s` | Split selection on newlines | `split_selection_on_newline` |
|
| `Alt-s` | Split selection on newlines | `split_selection_on_newline` |
|
||||||
| `Alt-_ ` | Merge consecutive selections | `merge_consecutive_selections` |
|
| `Alt-minus` | Merge selections | `merge_selections` |
|
||||||
|
| `Alt-_` | Merge consecutive selections | `merge_consecutive_selections` |
|
||||||
| `&` | Align selection in columns | `align_selections` |
|
| `&` | Align selection in columns | `align_selections` |
|
||||||
| `_` | Trim whitespace from the selection | `trim_selections` |
|
| `_` | Trim whitespace from the selection | `trim_selections` |
|
||||||
| `;` | Collapse selection onto a single cursor | `collapse_selection` |
|
| `;` | Collapse selection onto a single cursor | `collapse_selection` |
|
||||||
|
|
|
@ -522,7 +522,14 @@ impl Selection {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
// Merges all ranges that are consecutive
|
/// Replaces ranges with one spanning from first to last range.
|
||||||
|
pub fn merge_ranges(self) -> Self {
|
||||||
|
let first = self.ranges.first().unwrap();
|
||||||
|
let last = self.ranges.last().unwrap();
|
||||||
|
Selection::new(smallvec![first.merge(*last)], 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Merges all ranges that are consecutive.
|
||||||
pub fn merge_consecutive_ranges(mut self) -> Self {
|
pub fn merge_consecutive_ranges(mut self) -> Self {
|
||||||
let mut primary = self.ranges[self.primary_index];
|
let mut primary = self.ranges[self.primary_index];
|
||||||
|
|
||||||
|
|
|
@ -275,6 +275,7 @@ impl MappableCommand {
|
||||||
select_regex, "Select all regex matches inside selections",
|
select_regex, "Select all regex matches inside selections",
|
||||||
split_selection, "Split selections on regex matches",
|
split_selection, "Split selections on regex matches",
|
||||||
split_selection_on_newline, "Split selection on newlines",
|
split_selection_on_newline, "Split selection on newlines",
|
||||||
|
merge_selections, "Merge selections",
|
||||||
merge_consecutive_selections, "Merge consecutive selections",
|
merge_consecutive_selections, "Merge consecutive selections",
|
||||||
search, "Search for regex pattern",
|
search, "Search for regex pattern",
|
||||||
rsearch, "Reverse search for regex pattern",
|
rsearch, "Reverse search for regex pattern",
|
||||||
|
@ -1737,6 +1738,12 @@ fn split_selection_on_newline(cx: &mut Context) {
|
||||||
doc.set_selection(view.id, selection);
|
doc.set_selection(view.id, selection);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn merge_selections(cx: &mut Context) {
|
||||||
|
let (view, doc) = current!(cx.editor);
|
||||||
|
let selection = doc.selection(view.id).clone().merge_ranges();
|
||||||
|
doc.set_selection(view.id, selection);
|
||||||
|
}
|
||||||
|
|
||||||
fn merge_consecutive_selections(cx: &mut Context) {
|
fn merge_consecutive_selections(cx: &mut Context) {
|
||||||
let (view, doc) = current!(cx.editor);
|
let (view, doc) = current!(cx.editor);
|
||||||
let selection = doc.selection(view.id).clone().merge_consecutive_ranges();
|
let selection = doc.selection(view.id).clone().merge_consecutive_ranges();
|
||||||
|
|
|
@ -79,6 +79,7 @@ pub fn default() -> HashMap<Mode, Keymap> {
|
||||||
|
|
||||||
"s" => select_regex,
|
"s" => select_regex,
|
||||||
"A-s" => split_selection_on_newline,
|
"A-s" => split_selection_on_newline,
|
||||||
|
"A-minus" => merge_selections,
|
||||||
"A-_" => merge_consecutive_selections,
|
"A-_" => merge_consecutive_selections,
|
||||||
"S" => split_selection,
|
"S" => split_selection,
|
||||||
";" => collapse_selection,
|
";" => collapse_selection,
|
||||||
|
|
Loading…
Add table
Reference in a new issue