From ac40a3bcd0541f09e1ee5cb9aae2b951f0551304 Mon Sep 17 00:00:00 2001 From: axel Date: Mon, 10 Jul 2006 09:32:49 +1000 Subject: [PATCH] Fix use of hardcoded path in completions for the help completions causing missing completions and warnings darcs-hash:20060709233249-ac50b-9dfb4a708a8ecb3ae2e1882a0a5146aed6286d37.gz --- share/completions/help.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/completions/help.fish b/share/completions/help.fish index de62a55c8..710fb3490 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/.*

.*/\1/p") +for i in case (sed -n < $__fish_help_dir/commands.html -e "s/.*

.*/\1/p") complete -c help -x -a $i -d (N_ "Help for the specified command") end