aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-07-10 09:32:49 +1000
committerGravatar axel <axel@liljencrantz.se>2006-07-10 09:32:49 +1000
commitac40a3bcd0541f09e1ee5cb9aae2b951f0551304 (patch)
tree340bf99aff8302b488d6a1d8d00a13f85028257f /share
parent942dcd7d54b70f9c64da28b93d62e5403d6a5c44 (diff)
Fix use of hardcoded path in completions for the help completions causing missing completions and warnings
darcs-hash:20060709233249-ac50b-9dfb4a708a8ecb3ae2e1882a0a5146aed6286d37.gz
Diffstat (limited to 'share')
-rw-r--r--share/completions/help.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/completions/help.fish b/share/completions/help.fish
index de62a55c..710fb349 100644
--- a/share/completions/help.fish
+++ b/share/completions/help.fish
@@ -6,7 +6,7 @@ for i in (builtin -n)
complete -c help -x -a $i -d (N_ "Help for the specified builtin")
end
-for i in case (sed -n < /usr/share/doc/fish-1.21.7/commands.html -e "s/.*<h2><a class=\"anchor\" name=\"\([^\"]*\)\">.*/\1/p")
+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 -d (N_ "Help for the specified command")
end