mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
824f4ee566
darcs-hash:20060208102236-ac50b-6df5b077a09eda9180a1405305e12fd15967eb31.gz
15 lines
388 B
Fish
15 lines
388 B
Fish
#
|
|
# This function is used internally by the fish command completion code
|
|
#
|
|
|
|
function __fish_describe_command -d "Command used to find descriptions for commands"
|
|
apropos $argv | awk -v FS=" +- +" '{
|
|
split($1, names, ", ");
|
|
for (name in names)
|
|
if (names[name] ~ /^'"$argv"'.* *\([18]\)/) {
|
|
sub("( |\t)*\\([18]\\)", "", names[name]);
|
|
print names[name] "\t" $2;
|
|
}
|
|
}'
|
|
end
|
|
|