[editor] Add additional key combinations
Add ControlUp, ControlDown, ControlHome, ControlEnd, ControlInsert, ControlDelete and add additional ones for ControlPageUp and ControlPageDown.
This commit is contained in:
parent
ff9b901394
commit
ae85d3a1ac
1 changed files with 8 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue