mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
Stops theme breaking on root directory
This commit is contained in:
parent
1068df1bb7
commit
9feaaa8cf0
@ -10,11 +10,17 @@ set __toaster_color_lilac AE81FF
|
||||
|
||||
function __toaster_color_echo
|
||||
set_color $argv[1]
|
||||
echo -n $argv[2]
|
||||
if test (count $argv) -eq 2
|
||||
echo -n $argv[2]
|
||||
end
|
||||
end
|
||||
|
||||
function __toaster_current_folder
|
||||
echo -n $PWD | grep -o -E '[^\/]+$'
|
||||
if test $PWD = '/'
|
||||
echo -n '/'
|
||||
else
|
||||
echo -n $PWD | grep -o -E '[^\/]+$'
|
||||
end
|
||||
end
|
||||
|
||||
function __toaster_git_status_codes
|
||||
|
Loading…
Reference in New Issue
Block a user