diff --git a/shells/fish/functions/fish_title.fish b/shells/fish/functions/fish_title.fish new file mode 100644 index 0000000..f1646ed --- /dev/null +++ b/shells/fish/functions/fish_title.fish @@ -0,0 +1,12 @@ +# Defined in /tmp/fish.au862c/fish_title.fish @ line 2 +function fish_title + if test -z $EMACS + if test $_ = 'fish' + echo (prompt_pwd) + else + echo $_ + end + else + true + end +end