Make the __fish_describe_command function strip spaces and newlines

darcs-hash:20060208102236-ac50b-6df5b077a09eda9180a1405305e12fd15967eb31.gz
This commit is contained in:
axel 2006-02-08 20:22:36 +10:00
parent 1cb9b65744
commit 824f4ee566

View file

@ -7,7 +7,7 @@ function __fish_describe_command -d "Command used to find descriptions for comma
split($1, names, ", ");
for (name in names)
if (names[name] ~ /^'"$argv"'.* *\([18]\)/) {
sub("\\([18]\\)", "", names[name]);
sub("( |\t)*\\([18]\\)", "", names[name]);
print names[name] "\t" $2;
}
}'