How to emit a commandLineModeKeyBindingsNonRecursive macro lazily with enter #9060
-
Hello, "vim.commandLineModeKeyBindingsNonRecursive": [
{ "before": ["q", "g"], "commands": ["workbench.action.closeEditorsInGroup"]}
], How can I make it emit the action after i press enter? |
Beta Was this translation helpful? Give feedback.
Answered by
vmichailidisdev
Jul 3, 2024
Replies: 1 comment
-
{ "before": ["q", "g", "<CR>"], "commands": ["workbench.action.closeEditorsInGroup"]} or { "before": ["q", "g", "<Enter>"], "commands": ["workbench.action.closeEditorsInGroup"]} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
vmichailidisdev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
{ "before": ["q", "g", "<CR>"], "commands": ["workbench.action.closeEditorsInGroup"]}
or
{ "before": ["q", "g", "<Enter>"], "commands": ["workbench.action.closeEditorsInGroup"]}