Disable fish_title in emacs

This commit is contained in:
Fabian Homborg 2019-05-06 17:06:40 +02:00
parent 8a8b2513b5
commit cc205a134b

View File

@ -1,3 +1,6 @@
function fish_title
echo (status current-command) (__fish_pwd)
# emacs is basically the only term that can't handle it.
if not set -q INSIDE_EMACS
echo (status current-command) (__fish_pwd)
end
end