summaryrefslogtreecommitdiff
path: root/fish/functions/fish_right_prompt.fish
blob: 800203c715925d3ef313662259dac3008d1c15d2 (plain)
1
2
3
4
5
6
7
8
function fish_right_prompt
  set -l fail $status

  if [ $fail != 0 ];
    set_color red;
    echo -ne "<$fail>";
  end;
end