aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_describe_command.fish
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2007-01-08 00:20:00 +1000
committerGravatar axel <axel@liljencrantz.se>2007-01-08 00:20:00 +1000
commitf398b2eafaac6c5c91e734cc3ccb77294f0fb674 (patch)
tree217596716b6334869ae1bf71e367b748d27f7e70 /share/functions/__fish_describe_command.fish
parent1214067d038761d534cb03f230e0bc4f2a79fb99 (diff)
Remove comments from apropos matching in function for getting description for command from whatis database
darcs-hash:20070107142000-ac50b-0221d36e24d3d68f0a25535e7a7b303e4fb84abe.gz
Diffstat (limited to 'share/functions/__fish_describe_command.fish')
-rw-r--r--share/functions/__fish_describe_command.fish1
1 files changed, 1 insertions, 0 deletions
diff --git a/share/functions/__fish_describe_command.fish b/share/functions/__fish_describe_command.fish
index afbd57f9..27f3af3b 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;
}
}'