feat(config-settings): four-page TUI (Universal · Session · Sponge · Paths) #66

Merged
rootiest merged 14 commits from feat/config-settings-pages into main 2026-07-04 05:26:11 +00:00
Showing only changes of commit ec99ceb018 - Show all commits
+3 -1
View File
@@ -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