1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 16:23:14 +02:00

relay/api: add a way to toggle between remote and local command execution on remote buffers (issue #2148)

New default key:

- Alt+Ctrl+l (L): toggle execution of commands: remote/local

New options:

- relay.api.remote_input_cmd_local: text displayed for command executed locally
- relay.api.remote_input_cmd_remote: text displayed for command executed on the
  remote WeeChat
This commit is contained in:
Sébastien Helleu
2025-02-09 18:28:05 +01:00
parent 547e2b934e
commit ca6e483cdc
28 changed files with 998 additions and 528 deletions
+1
View File
@@ -97,6 +97,7 @@ gui_key_default_bindings (int context, int create_option)
BIND("meta-d", "/input delete_next_word");
BIND("ctrl-k", "/input delete_end_of_line");
BIND("meta-ctrl-k", "/input delete_end_of_input");
BIND("meta-ctrl-l", "/remote togglecmd");
BIND("meta-r", "/input delete_line");
BIND("meta-R", "/input delete_input");
BIND("ctrl-t", "/input transpose_chars");