How should I use numeric prefixes in config.toml
#4919
Answered
by
the-mikedavis
geometryolife
asked this question in
Q&A
-
In Vim. I use the configuration below to move up/down quickly: noremap K 5k
noremap J 5j But I don't know how to set up in Helix configuration. |
Beta Was this translation helpful? Give feedback.
Answered by
the-mikedavis
Nov 28, 2022
Replies: 1 comment
-
This will be possible with macro keybinding #1383: [keys.normal]
K = "@5k"
J = "@5j" Until then it is also possible to accomplish this by repeating the commands in config: [keys.normal]
K = ["move_line_up", "move_line_up", "move_line_up", "move_line_up", "move_line_up"]
J = ["move_line_down", "move_line_down", "move_line_down", "move_line_down", "move_line_down"] |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
geometryolife
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This will be possible with macro keybinding #1383:
Until then it is also possible to accomplish this by repeating the commands in config: