From 5cfe57afb5ad7fb3ae1265a533164f471080c5d1 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 23 Dec 2022 11:35:23 -0300 Subject: [PATCH] Still making Helix more like Vim --- helix/config.toml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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