-
I'm testing zellij out, as a vim user that uses splits alot, i use the keybindings I don't really know the best solution to for this problem, but right now i'm testing to unbind keybinds:
normal:
- unbind: [ Ctrl: 'h' ]
- unbind: [ Ctrl: 'p' ]
- unbind: [ Ctrl: 'b' ]
- action: [SwitchToMode: Pane,]
key: [ Ctrl: 'b' ]
pane:
- unbind: [ Ctrl: 'p' ]
- unbind: [ Ctrl: 'b' ]
- action: [SwitchToMode: Normal,]
key: [Ctrl: 'b', Char: "\n", Char: ' ', Esc] I seem to be able to unbind ctrl+p, but not ctrl+h. Am I doing something wrong? Also, feel free to comment out different solutions that unbinding the key. Could I miss something in my workflow instead? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
If you unbind multiple times, the last unbind will be prioritized. If you wish to unbind everything for the normal mode, then I suggest:
But if you want to unbind every
That will unbind the keybindings for the respective keys in each mode. |
Beta Was this translation helpful? Give feedback.
If you unbind multiple times, the last unbind will be prioritized.
If you wish to unbind everything for the normal mode, then I suggest:
But if you want to unbind every
^h
keybinding, then I suggest:That will unbind the keybindings for the respective keys in each mode.