mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-20 22:21:16 -03:00
Fix help completion to not barf if html file is absent
This commit is contained in:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user