Merge pull request #246 from steeeve/fix-missing-arg-for-root-directory

Stops theme breaking in root directory
This commit is contained in:
Bruno 2014-11-03 18:52:07 -02:00
commit dbecd88f13

View File

@ -10,11 +10,17 @@ set __toaster_color_lilac AE81FF
function __toaster_color_echo
set_color $argv[1]
if test (count $argv) -eq 2
echo -n $argv[2]
end
end
function __toaster_current_folder
if test $PWD = '/'
echo -n '/'
else
echo -n $PWD | grep -o -E '[^\/]+$'
end
end
function __toaster_git_status_codes