Add support for u and U in vim visual mode

This commit is contained in:
Brooks Swinnerton 2024-01-28 15:13:09 -05:00
parent b213458803
commit c0c0abae56
No known key found for this signature in database
GPG key ID: 72743B7DE552E25A
5 changed files with 103 additions and 10 deletions

View file

@ -400,7 +400,8 @@
{
"context": "Editor && vim_mode == visual && !VimWaiting && !VimObject",
"bindings": {
"u": "editor::Undo",
"u": "vim::ConvertToLowerCase",
"U": "vim::ConvertToUpperCase",
"o": "vim::OtherEnd",
"shift-o": "vim::OtherEnd",
"d": "vim::VisualDelete",