vim: Fix gv after indent/toggle comments (#17986)
Release Notes: - vim: Fixed `gv` after > and < in visual mode
This commit is contained in:
parent
3ac201e448
commit
1a62396b1e
5 changed files with 107 additions and 71 deletions
|
|
@ -6,6 +6,7 @@ mod test;
|
|||
mod change_list;
|
||||
mod command;
|
||||
mod digraph;
|
||||
mod indent;
|
||||
mod insert;
|
||||
mod mode_indicator;
|
||||
mod motion;
|
||||
|
|
@ -289,6 +290,7 @@ impl Vim {
|
|||
motion::register(editor, cx);
|
||||
command::register(editor, cx);
|
||||
replace::register(editor, cx);
|
||||
indent::register(editor, cx);
|
||||
object::register(editor, cx);
|
||||
visual::register(editor, cx);
|
||||
change_list::register(editor, cx);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue