mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Make the __fish_describe_command function strip spaces and newlines
darcs-hash:20060208102236-ac50b-6df5b077a09eda9180a1405305e12fd15967eb31.gz
This commit is contained in:
parent
1cb9b65744
commit
824f4ee566
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}'
|
||||
|
|
Loading…
Reference in a new issue