-
Hello, I would like to ask you for help with how to add new keyboard shortcuts:
[keys.normal]
C-tab = ":bn"
C-S-tab = ":bp"
[keys.normal]
space-c = { C-c } Generally, is there a way how to list all existing keyboard shortcuts? |
Beta Was this translation helpful? Give feedback.
Answered by
woojiq
Aug 10, 2023
Replies: 1 comment 2 replies
-
[keys.normal]
A-h = ":buffer-previous"
A-l = ":buffer-next"
A-w = ":buffer-close" Probably related to #7533 You can look at list of all commands using |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
waldauf
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
C-tab
doesn't work for me too. This works:Probably related to #7533
2. Right now there is no way to map to another key. There was issue or PR but I can't find. You need to write command, not another key press. Like:
space-c = "toggle_comments"
.You can look at list of all commands using
<space>?
shortcut.