feat(config-settings): decode Shift-Tab as backtab

This commit is contained in:
2026-06-24 00:02:50 -04:00
parent a422400d72
commit ec99ceb018
+3 -1
View File
@@ -24,7 +24,7 @@
# RETURNS
# 0 A key was read; one of these tokens is printed to stdout:
# up down left right arrow keys
# space tab enter escape
# space tab backtab enter escape
# quit Ctrl-C (byte 3) in raw mode
# <char> any other single printable character
# "" nothing decodable was read
@@ -64,6 +64,8 @@ function __config_settings_read_key
echo right
case '27 91 68'
echo left
case '27 91 90'
echo backtab
case 27
echo escape
case 9