1

While using vi keybindings in fish shell, is it possible to map jk to enter Normal mode? Currently Escape is used for doing that but I want to change (or add a new way) to do so.

1 Answer 1

4

Yes, try this:

bind --mode insert --sets-mode default jk repaint

This adds a key binding when in insert mode, which switches the mode to default. The key sequence of the binding is jk, and its command is to repaint. (The repainting is necessary if your prompt shows the current mode, which it does by default.)

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .