oh-my-fish/plugins/omf/omf.fish

23 lines
432 B
Fish
Raw Normal View History

2015-05-26 21:48:21 +08:00
# NAME
2015-05-31 19:31:55 +08:00
# omf - Oh My Fish helper
2015-05-26 21:48:21 +08:00
#
# DESCRIPTION
# Extend fish binary to support plugins and themes installation
#
2015-05-31 19:31:55 +08:00
function omf -d "Oh My Fish helper"
2015-05-26 21:48:21 +08:00
if test (count $argv) -gt 0
switch $argv[1]
case 'install'
2015-05-31 19:31:55 +08:00
omf.packages --install
2015-05-26 21:48:21 +08:00
case 'update'
2015-05-31 19:31:55 +08:00
omf.packages --update
2015-05-31 20:29:05 +08:00
case 'list' 'ls'
omf.packages --list
2015-05-26 21:48:21 +08:00
case '*'
2015-05-31 19:31:55 +08:00
omf.helper
2015-05-26 21:48:21 +08:00
end
else
2015-05-31 19:31:55 +08:00
omf.helper
2015-05-26 21:48:21 +08:00
end
end