Skip to content

Commit 51cedf1

Browse files
Expose Shift+arrow keys for key bindings.
1 parent bcbaf92 commit 51cedf1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pymux/key_mappings.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,11 @@ def prompt_toolkit_key_to_vt100_key(key, application_mode=False):
107107
'C-Down': (Keys.ControlDown, ),
108108
'C-\\': (Keys.ControlBackslash, ),
109109

110+
'S-Left': (Keys.ShiftLeft, ),
111+
'S-Right': (Keys.ShiftRight, ),
112+
'S-Up': (Keys.ShiftUp, ),
113+
'S-Down': (Keys.ShiftDown, ),
114+
110115
'M-C-a': (Keys.Escape, Keys.ControlA, ),
111116
'M-C-b': (Keys.Escape, Keys.ControlB, ),
112117
'M-C-c': (Keys.Escape, Keys.ControlC, ),

0 commit comments

Comments
 (0)