Add the ] and [ operators to helix
This commit is contained in:
parent
69eaf04dad
commit
9b44bb6706
9 changed files with 504 additions and 71 deletions
|
@ -479,7 +479,13 @@ impl Vim {
|
|||
self.replace_with_register_object(object, around, window, cx)
|
||||
}
|
||||
Some(Operator::Exchange) => self.exchange_object(object, around, window, cx),
|
||||
Some(Operator::HelixMatch) => self.select_object(object, around, window, cx),
|
||||
Some(Operator::HelixMatch) => {
|
||||
self.select_current_object(object, around, window, cx)
|
||||
}
|
||||
Some(Operator::SelectNext) => self.select_next_object(object, around, window, cx),
|
||||
Some(Operator::SelectPrevious) => {
|
||||
self.select_previous_object(object, around, window, cx)
|
||||
}
|
||||
_ => {
|
||||
// Can't do anything for namespace operators. Ignoring
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue