Add an "always" value to the extended-keys option to always forward

these keys to applications inside tmux.
This commit is contained in:
nicm
2021-06-10 07:24:10 +00:00
parent 1ee231956c
commit 64c276c23b
4 changed files with 29 additions and 8 deletions

View File

@ -1390,6 +1390,8 @@ input_csi_dispatch(struct input_ctx *ictx)
case INPUT_CSI_MODSET:
n = input_get(ictx, 0, 0, 0);
m = input_get(ictx, 1, 0, 0);
if (options_get_number(global_options, "extended-keys") == 2)
break;
if (n == 0 || (n == 4 && m == 0))
screen_write_mode_clear(sctx, MODE_KEXTENDED);
else if (n == 4 && (m == 1 || m == 2))