fish_title.fish 112 B

123456
  1. function fish_title
  2. if set -q FISH_SHELL_PURPOSE
  3. echo -n "[$FISH_SHELL_PURPOSE] "
  4. end
  5. echo $argv[1]
  6. end