fisher/functions/fisher_help.fish
Jorge Bucaran 6c5cac3a18
Ahoy! Fisherman 1.4.0 has shipped.
Notable changes:

+ Now fisher list does not show plugins that are disabled,
  but available in the cache. To preview these items use
  fisher list --disabled.

+ Welcome aboard @orangecms and @xrain0610.

+ Fisherman is now available in AUR, thanks @orangecms.

+ Fix load order during installation. Now snippets can
  safely invoke functions defined in the plugin function
  directory. Thanks @orangecms. #170.

+ Fisherman **installs and updates plugins ⌁concurrently**.
  Performance may vary, but if you can see 5 to 10 times
  faster network times, it's working well.
2016-03-31 02:42:44 +09:00

47 lines
1 KiB
Fish

function fisher_help -d "Show command help (h)"
if not set -q argv[1]
man fisher
return
end
set -l option
set -l value
getopts $argv | while read -l 1 2
switch "$1"
case _
set option man
set value $2
case usage
set option usage
set value $value $2
case h
printf "Usage: fisher help [<keyword>]\n"
return
case \*
printf "fisher: '%s' is not a valid option\n" $1 > /dev/stderr
fisher_help -h > /dev/stderr
return 1
end
end
switch "$option"
case man
set -l value (printf "%s\n" $value | awk '{ print tolower($0) }')
switch "$value"
case me fisher fisherman
man fisher
case \*
man fisher-$value
end
case usage
__fisher_help_usage $value
end
end