Remap the window mode? #9694
-
I'd like to remap opening the window mode from [keys.normal.";"]
w = "window_mode" This gives an error that there is no command named Is there any way to remap the window mode? I don't like relying on the Ctrl key, it feels very "jetbrainsy", and I'd like to experiment with a different kind of keymapping that doesn't need that many shifts, controls, alts, etc... |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Oh, found it? So the good news is that I overlooked another alternative for window mode, which is available through the space, so I can just type "space w" and the window mode opens, so my original goal of getting rid of the Ctrl can be achieved. The bad news is that it looks like the window mode cannot be remapped? See screenshot. |
Beta Was this translation helpful? Give feedback.
-
Window mode and other minor modes like space mode, goto mode, view mode, etc. are just groups of keybindings. There isn't a way to rebind all of the keys in a minor mode currently - you need to remap each of commands in the mode to a new key: [keys.normal.";".w]
w = "rotate_view"
s = "hsplit"
v = "vsplit"
# ... etc. ... |
Beta Was this translation helpful? Give feedback.
Window mode and other minor modes like space mode, goto mode, view mode, etc. are just groups of keybindings. There isn't a way to rebind all of the keys in a minor mode currently - you need to remap each of commands in the mode to a new key: