1
0
Fork 0

[editor] Add additional key combinations

Add ControlUp, ControlDown, ControlHome, ControlEnd, ControlInsert,
ControlDelete and add additional ones for ControlPageUp and
ControlPageDown.
pull/1502/head
Samantha McVey 7 years ago
parent ff9b901394
commit ae85d3a1ac
No known key found for this signature in database
GPG Key ID: A68DF012C3881D62

@ -31,8 +31,14 @@ key_info=(
'Control' '\C-'
'ControlLeft' '\e[1;5D \e[5D \e\e[D \eOd'
'ControlRight' '\e[1;5C \e[5C \e\e[C \eOc'
'ControlPageUp' '\e[5;5~'
'ControlPageDown' '\e[6;5~'
'ControlPageUp' '\e[5;5~ \e[5~'
'ControlPageDown' '\e[6;5~ \e[6~'
'ControlUp' '\e[1;5A \e[A'
'ControlDown' '\e[1;5B \e[B'
'ControlHome' '\e[1;5H \e[1~'
'ControlEnd' '\e[1;5F'
'ControlInsert' '\e[2;5~'
'ControlDelete' '\e[3;5~'
'Escape' '\e'
'Meta' '\M-'
'Backspace' "^?"

Loading…
Cancel
Save