From 1dcbd6498cf3e2260c6c6f2a3e64286eb5b904b0 Mon Sep 17 00:00:00 2001 From: Rootiest Date: Mon, 21 Sep 2026 01:36:30 -0400 Subject: [PATCH] fix(functions): color the command name in config-help's USAGE section The USAGE block's "help config" was left as plain text while every other section (EXAMPLES) correctly colored it with c_cmd. --- functions/config-help.fish | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/functions/config-help.fish b/functions/config-help.fish index aba7e5f..46f85cf 100644 --- a/functions/config-help.fish +++ b/functions/config-help.fish @@ -195,10 +195,10 @@ function config-help --description 'Open the offline fish shell configuration ma echo " — view the offline fish shell configuration manual" echo "" echo "$c_head""USAGE$c_reset" - echo " help config $c_arg""[section]$c_reset" - echo " help config $c_arg""[section]$c_reset $c_flag--html$c_reset" - echo " help config $c_arg""[section]$c_reset $c_flag--man$c_reset" - echo " help config $c_flag--help$c_reset" + echo " $c_cmd""help config$c_reset $c_arg""[section]$c_reset" + echo " $c_cmd""help config$c_reset $c_arg""[section]$c_reset $c_flag--html$c_reset" + echo " $c_cmd""help config$c_reset $c_arg""[section]$c_reset $c_flag--man$c_reset" + echo " $c_cmd""help config$c_reset $c_flag--help$c_reset" echo "" echo "$c_head""ARGUMENTS$c_reset" echo " $c_arg""section$c_reset Optional keyword to jump to a matching section heading."