Skip to content

Instantly share code, notes, and snippets.

@hroi
Created September 24, 2023 18:19
Show Gist options
  • Save hroi/50d7a93f66f48c82efab42bec8509e9e to your computer and use it in GitHub Desktop.
Save hroi/50d7a93f66f48c82efab42bec8509e9e to your computer and use it in GitHub Desktop.
Some vim movements in Helix
[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