vim: Sentence motion (#17425)

Closes #12161

Release Notes:

- vim: Added `(` and `)` for sentence motion
This commit is contained in:
Conrad Irwin 2024-09-05 11:18:52 -06:00 committed by GitHub
parent 01e40928d8
commit 1e09884a22
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 276 additions and 2 deletions

View file

@ -29,6 +29,8 @@
"shift-g": "vim::EndOfDocument",
"{": "vim::StartOfParagraph",
"}": "vim::EndOfParagraph",
"(": "vim::SentenceBackward",
")": "vim::SentenceForward",
"|": "vim::GoToColumn",
// Word motions
"w": "vim::NextWordStart",