From f9697c8e361a0883bb5a97276940435714ad623a Mon Sep 17 00:00:00 2001 From: Cheer Xiao Date: Mon, 17 Dec 2012 23:01:34 +0800 Subject: [PATCH] Apply the same fix to help completion too. --- 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 abf88f3c3d54..d96745ab4e26 100644 --- a/share/completions/help.fish +++ b/share/completions/help.fish @@ -3,7 +3,7 @@ # if test -f "$__fish_help_dir/commands.html" - for i in case (sed -n < $__fish_help_dir/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 --description "Help for the specified command" end end