helix: some movement in select mode

This commit is contained in:
fanyx 2025-09-09 11:58:07 +02:00
parent 64095cb519
commit 002614f62f
No known key found for this signature in database
2 changed files with 6 additions and 3 deletions

View file

@ -76,12 +76,12 @@ A-p = "extend_search_prev"
y = ["yank_to_clipboard","yank"] y = ["yank_to_clipboard","yank"]
C-a = "insert_at_line_start" C-a = "insert_at_line_start"
C-e = "insert_at_line_end" C-e = "insert_at_line_end"
"{" = "goto_prev_paragraph"
"}" = "goto_next_paragraph"
S-v = ["extend_to_line_bounds","select_mode"] S-v = ["extend_to_line_bounds","select_mode"]
S-ret = ["open_below", "insert_mode"] S-ret = ["open_below", "insert_mode"]
"{" = "goto_prev_paragraph"
"}" = "goto_next_paragraph"
"[" = { "[" = "goto_previous_buffer" } "[" = { "[" = "goto_previous_buffer" }
"]" = { "]" = "goto_next_buffer" } "]" = { "]" = "goto_next_buffer" }
@ -105,6 +105,8 @@ A-p = "extend_search_prev"
y = ["yank_to_clipboard","yank"] y = ["yank_to_clipboard","yank"]
C-a = "insert_at_line_start" C-a = "insert_at_line_start"
C-e = "insert_at_line_end" C-e = "insert_at_line_end"
"{" = "goto_prev_paragraph"
"}" = "goto_next_paragraph"
[keys.normal.space] [keys.normal.space]
l = ":toggle lsp.display-inlay-hints" l = ":toggle lsp.display-inlay-hints"
@ -124,6 +126,7 @@ F = "file_picker_in_current_directory"
e = "file_explorer" e = "file_explorer"
E = "file_explorer_in_current_directory" E = "file_explorer_in_current_directory"
w = ":write" w = ":write"
W = ":write!"
g = "changed_file_picker" g = "changed_file_picker"
[keys.normal.space.r] [keys.normal.space.r]

View file

@ -5,7 +5,7 @@ formatter = { command = "yamlfmt", args = ["-"] }
[[language]] [[language]]
name = "python" name = "python"
language-servers = ["ruff", "pyright"] language-servers = ["ruff"] #, "pyright"]
auto-format = true auto-format = true
[[language]] [[language]]