Created
September 24, 2023 18:19
-
-
Save hroi/50d7a93f66f48c82efab42bec8509e9e to your computer and use it in GitHub Desktop.
Some vim movements in Helix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[keys.normal] | |
# VIMisms: | |
# same as "]p" | |
"}" = "goto_next_paragraph" | |
# same as "[p" | |
"{" = "goto_prev_paragraph" | |
# same as "gh" | |
"0" = "goto_line_start" | |
# same as "gs" | |
"^" = "goto_first_nonwhitespace" | |
# same as "gl" | |
"$" = "goto_line_end" | |
# same as "x_c" | |
"S" = ["goto_first_nonwhitespace", "extend_to_line_end", "change_selection"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment