mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-26 10:43:47 +08:00
Fix help completion to not barf if html file is absent
This commit is contained in:
parent
425afa63ce
commit
5ea486b20a
|
@ -2,8 +2,10 @@
|
|||
# Completions for the help command
|
||||
#
|
||||
|
||||
for i in case (sed -n < $__fish_help_dir/commands.html -e "s/.*<h2><a class=\"anchor\" name=\"\([^\"]*\)\">.*/\1/p")
|
||||
complete -c help -x -a $i --description "Help for the specified command"
|
||||
if test -f "$__fish_help_dir/commands.html"
|
||||
for i in case (sed -n < $__fish_help_dir/commands.html -e "s/.*<h2><a class=\"anchor\" name=\"\([^\"]*\)\">.*/\1/p")
|
||||
complete -c help -x -a $i --description "Help for the specified command"
|
||||
end
|
||||
end
|
||||
|
||||
complete -c help -x -a syntax --description 'Introduction to the fish syntax'
|
||||
|
|
Loading…
Reference in New Issue
Block a user