vim: Add gU/gu/g~ (#12782)

Co-Authored-By: ethanmsl@gmail.com

Release Notes:

- vim: Added `gu`/`gU`/`g~` for changing case. (#12565)
This commit is contained in:
Conrad Irwin 2024-06-07 12:38:12 -06:00 committed by GitHub
parent 3eac83eece
commit 5548773b2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 168 additions and 3 deletions

View file

@ -539,6 +539,9 @@ impl Vim {
| Operator::Replace
| Operator::Indent
| Operator::Outdent
| Operator::Lowercase
| Operator::Uppercase
| Operator::OppositeCase
) {
self.start_recording(cx)
};