Browse Source

Still making Helix more like Vim

master
Julio Biason 1 year ago
parent
commit
5cfe57afb5
  1. 9
      helix/config.toml

9
helix/config.toml

@ -34,12 +34,17 @@ auto-signature-help = false
"end" = "goto_line_end_newline"
"C-e" = "goto_line_end_newline"
"A-left" = "goto_line_start"
"C-p" = "completion"
[keys.normal]
"space" = { space = "file_picker", "h" = "no_op" }
"0" = "goto_line_start"
"$" = "goto_line_end"
g = { a = "code_action" }
g = { a = "code_action", r = "rename_symbol", n = "goto_next_diag", p = "goto_prev_diag" }
Z = { Z = ":wq" }
"D" = ["goto_line_start", "kill_to_line_end"]
"D" = "kill_to_line_end"
"backspace" = "delete_char_backward"
x = "delete_char_forward"
_ = "goto_line_start"
V = "extend_line_below"
G = "goto_line_end"
Loading…
Cancel
Save