fish-shell/share/functions/__fish_print_pipestatus.fish
Fabian Homborg 0a3fec5e8b __fish_print_pipestatus: Reset modifiers again
Called as

__fish_print_pipestatus "[foo" "oof]" "|" (set_color green) (set_color --bold blue) 0 1 2

it would make the closing `oof]` bold green.

Fixes #7771.
2021-03-03 19:20:28 +01:00

38 lines
1.3 KiB
Fish

function __fish_print_pipestatus --description "Print pipestatus for prompt"
set -l last_status
if set -q __fish_last_status
set last_status $__fish_last_status
else
set last_status $argv[-1] # default to $pipestatus[-1]
end
set -l left_brace $argv[1]
set -l right_brace $argv[2]
set -l separator $argv[3]
set -l brace_sep_color $argv[4]
set -l status_color $argv[5]
set -e argv[1 2 3 4 5]
if not set -q argv[1]
echo error: missing argument >&2
status print-stacktrace >&2
return 1
end
# Only print status codes if the job failed.
# SIGPIPE (141 = 128 + 13) is usually not a failure, see #6375.
if not contains $last_status 0 141
set -l sep $brace_sep_color$separator$status_color
set -l last_pipestatus_string (fish_status_to_signal $argv | string join "$sep")
set -l last_status_string ""
if test "$last_status" -ne "$argv[-1]"
set last_status_string " "$status_color$last_status
end
set -l normal (set_color normal)
# The "normal"s are to reset modifiers like bold - see #7771.
printf "%s" $normal $brace_sep_color $left_brace \
$status_color $last_pipestatus_string \
$normal $brace_sep_color $right_brace $normal $last_status_string $normal
end
end