vim: Fix , and ; in visual mode (#7230)

Release Notes:

- vim: Fixed , and ; in visual mode
([#7182](https://github.com/zed-industries/zed/issues/7182)).
This commit is contained in:
Conrad Irwin 2024-02-01 10:13:30 -07:00 committed by GitHub
parent d4264cbe4e
commit 3521b50405
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -96,6 +96,8 @@
}
}
],
";": "vim::RepeatFind",
",": "vim::RepeatFindReversed",
"ctrl-o": "pane::GoBack",
"ctrl-i": "pane::GoForward",
"ctrl-]": "editor::GoToDefinition",
@ -333,8 +335,6 @@
],
"*": "vim::MoveToNext",
"#": "vim::MoveToPrev",
";": "vim::RepeatFind",
",": "vim::RepeatFindReversed",
"r": ["vim::PushOperator", "Replace"],
"s": "vim::Substitute",
"shift-s": "vim::SubstituteLine",