diff --git a/helix/config.toml b/helix/config.toml index 02e61d3..877f8ed 100644 --- a/helix/config.toml +++ b/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" \ No newline at end of file