diff --git a/dots/helix/config.toml b/dots/helix/config.toml index 3c652ab..5c103d4 100644 --- a/dots/helix/config.toml +++ b/dots/helix/config.toml @@ -2,6 +2,7 @@ # https://docs.helix-editor.com/remapping.html # https://theari.dev/blog/enhanced-helix-config/ +# https://github.com/helix-editor/helix/discussions/5764 [editor] # Show currently open buffers, only when more than one exists. @@ -31,7 +32,7 @@ auto-signature-help = false display-messages = true [editor.statusline] -left = ["mode", "spinner", "version-control", "file-name"] +#left = ["mode", "spinner", "version-control", "file-name"] [keys.normal] "A-," = "goto_previous_buffer" @@ -41,3 +42,5 @@ left = ["mode", "spinner", "version-control", "file-name"] [keys.insert] C-s = ":w" # Maps Ctrl-s to the typable command :w which is an alias for :write (save file) +A-down = ["extend_to_line_bounds", "delete_selection", "paste_after"] +A-up = ["extend_to_line_bounds", "delete_selection", "move_line_up", "paste_before"]