From 002614f62f046238b03f6ce88e8502461c351076 Mon Sep 17 00:00:00 2001 From: Hendrik Boll Date: Tue, 9 Sep 2025 11:58:07 +0200 Subject: [PATCH] helix: some movement in select mode --- dot_config/helix/config.toml | 7 +++++-- dot_config/helix/languages.toml | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/dot_config/helix/config.toml b/dot_config/helix/config.toml index 1aae252..e470f2a 100644 --- a/dot_config/helix/config.toml +++ b/dot_config/helix/config.toml @@ -76,12 +76,12 @@ A-p = "extend_search_prev" y = ["yank_to_clipboard","yank"] C-a = "insert_at_line_start" C-e = "insert_at_line_end" +"{" = "goto_prev_paragraph" +"}" = "goto_next_paragraph" S-v = ["extend_to_line_bounds","select_mode"] S-ret = ["open_below", "insert_mode"] -"{" = "goto_prev_paragraph" -"}" = "goto_next_paragraph" "[" = { "[" = "goto_previous_buffer" } "]" = { "]" = "goto_next_buffer" } @@ -105,6 +105,8 @@ A-p = "extend_search_prev" y = ["yank_to_clipboard","yank"] C-a = "insert_at_line_start" C-e = "insert_at_line_end" +"{" = "goto_prev_paragraph" +"}" = "goto_next_paragraph" [keys.normal.space] l = ":toggle lsp.display-inlay-hints" @@ -124,6 +126,7 @@ F = "file_picker_in_current_directory" e = "file_explorer" E = "file_explorer_in_current_directory" w = ":write" +W = ":write!" g = "changed_file_picker" [keys.normal.space.r] diff --git a/dot_config/helix/languages.toml b/dot_config/helix/languages.toml index 7b8cca2..f0227b7 100644 --- a/dot_config/helix/languages.toml +++ b/dot_config/helix/languages.toml @@ -5,7 +5,7 @@ formatter = { command = "yamlfmt", args = ["-"] } [[language]] name = "python" -language-servers = ["ruff", "pyright"] +language-servers = ["ruff"] #, "pyright"] auto-format = true [[language]]