mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-09 13:10:40 +00:00
10 lines
164 B
Fish
10 lines
164 B
Fish
|
function fish_right_prompt
|
||
|
set -l last_status $status
|
||
|
|
||
|
if test $last_status -ne 0
|
||
|
set_color red
|
||
|
printf '%d' $last_status
|
||
|
set_color normal
|
||
|
end
|
||
|
end
|