refactor: use __fish_palette in small utility functions (1/2)

37 duplicated declarations replaced by 8 calls. Output strings untouched;
byte-identical across 29 harness cases.
This commit is contained in:
2026-09-07 20:06:20 -04:00
parent b0c6d7f7f5
commit f3f6e6356b
8 changed files with 8 additions and 37 deletions
+1 -4
View File
@@ -25,10 +25,7 @@
function bkg --description 'Execute bkg'
# Check if a command was provided as an argument.
if test -z "$argv[1]"
set -l c_head (set_color --bold cyan)
set -l c_cmd (set_color --bold)
set -l c_arg (set_color cyan)
set -l c_reset (set_color normal)
__fish_palette
echo "$c_head""Usage:$c_reset $c_cmd""bkg$c_reset $c_arg""<command> [arguments...]$c_reset"
return 1
end