mv alt+R binding from project to normal

"project" bindings are inherited by the "home" screen, but the command
inserts into a buffer, hence fails with an error.
This commit is contained in:
Ingo Lohmar 2025-02-20 19:45:49 +01:00 committed by CJ van den Berg
parent 96c69c1636
commit c37848bfb3

View file

@ -11,7 +11,6 @@
["ctrl+minus", "adjust_fontsize", -1.0], ["ctrl+minus", "adjust_fontsize", -1.0],
["f5", ["create_scratch_buffer", "*test*"], ["shell_execute_insert", "zig", "build", "test"]], ["f5", ["create_scratch_buffer", "*test*"], ["shell_execute_insert", "zig", "build", "test"]],
["f7", ["create_scratch_buffer", "*build*"], ["shell_execute_insert", "zig", "build"]], ["f7", ["create_scratch_buffer", "*build*"], ["shell_execute_insert", "zig", "build"]],
["alt+R", ["shell_execute_insert", "openssl", "rand", "-hex", "4"]],
["alt+d", ["shell_execute_log", "date"]] ["alt+d", ["shell_execute_log", "date"]]
] ]
}, },
@ -93,6 +92,7 @@
["alt+s", "filter", "sort"], ["alt+s", "filter", "sort"],
["alt+v", "paste"], ["alt+v", "paste"],
["alt+x", "open_command_palette"], ["alt+x", "open_command_palette"],
["alt+R", ["shell_execute_insert", "openssl", "rand", "-hex", "4"]],
["alt+left", "jump_back"], ["alt+left", "jump_back"],
["alt+right", "jump_forward"], ["alt+right", "jump_forward"],
["alt+up", "pull_up"], ["alt+up", "pull_up"],