Skip to content

How do I change the default navigation keys? #273

Answered by 71
awulkan asked this question in Q&A
Discussion options

You must be logged in to vote

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.

{
  "key": "K",
  "when": "editorTextFocus && dance.mode == 'normal'",
  "command": "-dance.select.up.jump"
},

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@awulkan
Comment options

Answer selected by awulkan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants