diff --git a/.config/helix/config.toml b/.config/helix/config.toml index d308209..e8dd57e 100644 --- a/.config/helix/config.toml +++ b/.config/helix/config.toml @@ -32,6 +32,10 @@ C-j = "shrink_selection" C-k = "expand_selection" C-l = "select_next_sibling" +# Upstream's preference +# o = ["open_below", "normal_mode"] +# O = ["open_above", "normal_mode"] + # Muscle memory "{" = ["goto_prev_paragraph", "collapse_selection"] "}" = ["goto_next_paragraph", "collapse_selection"] @@ -75,6 +79,10 @@ u = ["undo", "collapse_selection"] # Escape the madness! No more fighting with the cursor! Or with multiple cursors! esc = ["collapse_selection", "keep_primary_selection"] +# Search for word under cursor +"*" = ["move_char_right", "move_prev_word_start", "move_next_word_end", "search_selection", "search_next"] +"#" = ["move_char_right", "move_prev_word_start", "move_next_word_end", "search_selection", "search_prev"] + # Extend and select commands that expect a manual input can't be chained # I've kept d[X] commands here because it's better to at least have the stuff you want to delete # selected so that it's just a keystroke away to delete