feat(config-settings): decode Shift-Tab as backtab
This commit is contained in:
@@ -24,7 +24,7 @@
|
|||||||
# RETURNS
|
# RETURNS
|
||||||
# 0 A key was read; one of these tokens is printed to stdout:
|
# 0 A key was read; one of these tokens is printed to stdout:
|
||||||
# up down left right arrow keys
|
# up down left right arrow keys
|
||||||
# space tab enter escape
|
# space tab backtab enter escape
|
||||||
# quit Ctrl-C (byte 3) in raw mode
|
# quit Ctrl-C (byte 3) in raw mode
|
||||||
# <char> any other single printable character
|
# <char> any other single printable character
|
||||||
# "" nothing decodable was read
|
# "" nothing decodable was read
|
||||||
@@ -64,6 +64,8 @@ function __config_settings_read_key
|
|||||||
echo right
|
echo right
|
||||||
case '27 91 68'
|
case '27 91 68'
|
||||||
echo left
|
echo left
|
||||||
|
case '27 91 90'
|
||||||
|
echo backtab
|
||||||
case 27
|
case 27
|
||||||
echo escape
|
echo escape
|
||||||
case 9
|
case 9
|
||||||
|
|||||||
Reference in New Issue
Block a user