Control and Shift modifiers: why does C-H
get executed as C-h
?
#4295
thomastthai
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Using the information and configuration below, why does
C-H
(pressing Ctrl-Shift-h) is interpreted asC-h
(pressing Ctrl-h), i.e. "Resized pane left 1" is displayed and the resize to the left is only by 1 instead of 15?Update: I may have found the answer. Limitations of Ctrl keys mentioned there are only 32 control characters. Which means
C-H
doesn't exist and probably gets translated by the terminal emulator toC-h
.The wiki section How tmux describes keys with modifiers mentioned multiple modifier keys can be combined:
A snippet of my
tmux.conf
file:Limitations of Shift keys was also referenced.
Using
prefix2
table and setting up a similar configuration, the resize and message work as intended for all three combinations. Notice there is noC-H
,C-J
,C-K
, andC-L
, i.e. Ctrl-Shift-[h, j, k, l].Beta Was this translation helpful? Give feedback.
All reactions