Use of 0 and $ for line start / end #801
-
Same as VI/VIM, the use of '0' to go at start of line and '$' to go at end of line would be useful as it is much quicker than Home / End, the same way JKLM is already used in spite of arrows. |
Beta Was this translation helpful? Give feedback.
Answered by
sudormrfbin
Oct 3, 2021
Replies: 2 comments
-
We have # ~/.config/helix/config.toml
[keys.normal]
"0" = "goto_line_start" # Note that this will not work because 0 will be taken as a count
"$" = "goto_line_end" |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Wisermans
-
thx for your so quick reply .. then i will stick to the kakoune syntax :-) |
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
We have
gh
andgl
respectively for goto line start/end (inspired from kakoune) and it's possible to remap if you really want to emulate vim with a caveat for0
: