From 2acb120dc4c9c1284d8e43657722d56554c69141 Mon Sep 17 00:00:00 2001 From: committer Date: Wed, 26 Jun 2024 11:47:46 -0500 Subject: [PATCH] u --- dots/helix/config.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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"]