oh-my-fish/functions/Plugin.fish

10 lines
280 B
Fish
Raw Normal View History

2015-05-26 21:28:06 +08:00
function Plugin --argument-names name
if [ -e $fish_path/plugins/$name -o -e $fish_custom/plugins/$name ]
import plugins/$name
else
set_color red
echo "Plugin '$name' is not installed. Run 'fish install' to download and install it."
set_color normal
end
end