This commit is contained in:
committer
2024-06-26 11:47:46 -05:00
parent fa3e590951
commit 2acb120dc4

View File

@@ -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"]