Is is possible for a keybinding to run multiple commands? #14422
Unanswered
joshgoebel
asked this question in
Q&A
Replies: 2 comments
-
There is currently no way to key-bind multiple commands, but you can key-bind each command individually and then use the simulated key method to achieve the.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you! my bind for space in normal mode works just fine {
// Bind for using space to insert a space in normal mode
"context": "Editor && vim_mode == normal",
"bindings": {
"space": ["workspace::SendKeystrokes", "i space escape"]
} } |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For example I'd like
j k l
to exit from insert to normal mode, and then immediately also save the file.Beta Was this translation helpful? Give feedback.
All reactions