From 8866236bda517efc2fee9248005d0e7e709ed36e Mon Sep 17 00:00:00 2001 From: Rootiest Date: Tue, 18 Aug 2026 18:13:01 -0400 Subject: [PATCH] fix(config-settings): align Enter continuation line in --help output The wrapped description for the Enter key was indented one column past every other description in the Navigation block. Drop the extra leading space so it lines up at column 17 with the rest. --- functions/config-settings.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/config-settings.fish b/functions/config-settings.fish index ccf9e44..4f289de 100644 --- a/functions/config-settings.fish +++ b/functions/config-settings.fish @@ -89,7 +89,7 @@ function config-settings --description 'Interactive TUI for managing fish config echo " $c_flag↑ ↓$c_reset or $c_flag""k j$c_reset Move cursor up / down" echo " $c_flag← →$c_reset or $c_flag""h l$c_reset Toggle pages: OFF ← DEFAULT → ON" echo " $c_flag""Enter$c_reset Open sub-category page (Universal / Session);" - echo " edit value (Sponge / Paths pages)" + echo " edit value (Sponge / Paths pages)" echo " $c_flag← / h$c_reset Clear value to default (value rows)" echo " $c_flag""Tab / S-Tab$c_reset Next / previous page" echo " $c_flag""q$c_reset / $c_flag""Esc$c_reset Exit"