|
Hey, thanks for developing this cool extension. |
Answered by
71
Sep 5, 2022
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"
}, |
1 reply
Answer selected by
awulkan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.jsonand change the character that triggers the command. You will also have to delete the previous keybinding, e.g.{ "key": "K", "when": "editorTextFocus && dance.mode == 'normal'", "command": "-dance.select.up.jump" },