fish_right_prompt.fish 231 B

12345678910
  1. function fish_right_prompt --description 'Write out the prompt on the right'
  2. set -l last_status $status
  3. if not test $last_status -eq 0
  4. set_color $fish_color_error
  5. echo $last_status
  6. end
  7. set_color normal
  8. end