mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
37 lines
1.3 KiB
Fish
37 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-stack-trace >&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
|