feat(keymaps): Use cd to LSP Rename (N)

This commit is contained in:
js0ny 2025-04-02 19:29:45 +01:00
parent 0164b1ca8a
commit e8d5568745
6 changed files with 56 additions and 11 deletions

View file

@ -47,7 +47,21 @@
"bindings": {
"N": "vim::JoinLines",
"l": "vim::InsertBefore",
"L": "vim::InsertFirstNonWhitespace",
"L": "vim::InsertFirstNonWhitespace"
}
},
{
"context": "vim_mode == visual || vim_mode == operator",
"bindings": {
"H": "vim::StartOfLine",
"I": "vim::EndOfLine"
}
},
{
"context": "vim_mode == normal",
"bindings": {
"H": "pane::ActivatePrevItem",
"I": "pane::ActivateNextItem"
}