this repo has no description

hx opts

+31 -1
+31 -1
.config/helix/config.toml
··· 9 9 bufferline="multiple" 10 10 end-of-line-diagnostics = "hint" 11 11 # rulers = [80] 12 + shell = ["pwsh.exe","-NoLogo","-NoProfile","-NoProfileLoadTime","-Command","$PSStyle.OutputRendering='PlainText';"] 12 13 13 14 [editor.cursor-shape] 14 15 insert = "bar" ··· 64 65 A-j = ["extend_to_line_bounds", "delete_selection", "paste_after"] 65 66 A-k = ["extend_to_line_bounds", "delete_selection", "move_line_up", "paste_before"] 66 67 A-h = ["delete_selection", "move_char_left", "paste_before"] 67 - A-l = ["delete_selection", "move_char_right", "paste_after"] 68 + A-l = ["delete_selection", "move_char_right", "paste_after"] 69 + # Works only in Unix systems 70 + # # C-r = [ 71 + # ":write-all", 72 + # ":insert-output scooter >/dev/tty", 73 + # ":redraw", 74 + # ":reload-all" 75 + # ] 68 76 69 77 [keys.insert] 70 78 # j = { k = "normal_mode" } # Maps `jk` to exit insert mode 79 + 80 + [keys.normal.space] 81 + # Kinda works on Windows, but prefers Unix systems 82 + e = [ 83 + ":sh rm /tmp/unique-file-h21a434", 84 + ":insert-output yazi '%{buffer_name}' --chooser-file=/tmp/unique-file-h21a434", 85 + ":insert-output echo \"x1b[?1049h\" > /dev/tty", 86 + ":open %sh{cat /tmp/unique-file-h21a434}", 87 + ":redraw", 88 + ":set mouse false", 89 + ":set mouse true" 90 + ] 91 + # Kinda works on Windows, but prefers Unix systems 92 + E = [ 93 + ":sh rm /tmp/unique-file-u41ae14", 94 + ":insert-output yazi '%{workspace_directory}' --chooser-file=/tmp/unique-file-u41ae14", 95 + ":insert-output echo \"x1b[?1049h\" > /dev/tty", 96 + ":open %sh{cat /tmp/unique-file-u41ae14}", 97 + ":redraw", 98 + ":set mouse false", 99 + ":set mouse true" 100 + ]