From f398b2eafaac6c5c91e734cc3ccb77294f0fb674 Mon Sep 17 00:00:00 2001 From: axel Date: Mon, 8 Jan 2007 00:20:00 +1000 Subject: [PATCH] Remove comments from apropos matching in function for getting description for command from whatis database darcs-hash:20070107142000-ac50b-0221d36e24d3d68f0a25535e7a7b303e4fb84abe.gz --- share/functions/__fish_describe_command.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/share/functions/__fish_describe_command.fish b/share/functions/__fish_describe_command.fish index afbd57f97..27f3af3bd 100644 --- a/share/functions/__fish_describe_command.fish +++ b/share/functions/__fish_describe_command.fish @@ -8,6 +8,7 @@ function __fish_describe_command -d "Command used to find descriptions for comma for (name in names) if (names[name] ~ /^'"$argv"'.* *\([18]\)/ ) { sub( "( |\t)*\\\([18]\\\)", "", names[name] ); + sub( " \\\[.*\\\]", "", names[name] ); print names[name] "\t" $2; } }'