-
Hey, thanks for developing this cool extension. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Dance commands are defined in VS Code keybindings, so you can just add new keybindings for these keys and remove the previous ones. For instance, these are the default keybindings to go up. You can copy-paste that in {
"key": "K",
"when": "editorTextFocus && dance.mode == 'normal'",
"command": "-dance.select.up.jump"
}, |
Beta Was this translation helpful? Give feedback.
Dance commands are defined in VS Code keybindings, so you can just add new keybindings for these keys and remove the previous ones.
For instance, these are the default keybindings to go up. You can copy-paste that in
keybindings.json
and change the character that triggers the command. You will also have to delete the previous keybinding, e.g.