2006-02-08 10:20:43 +00:00
|
|
|
#
|
|
|
|
# This function is used internally by the fish command completion code
|
|
|
|
#
|
|
|
|
|
2020-02-18 02:13:04 +00:00
|
|
|
# Perform this check once at startup rather than on each invocation
|
|
|
|
if not type -q apropos
|
|
|
|
function __fish_describe_command
|
|
|
|
end
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
|
2006-02-08 10:20:43 +00:00
|
|
|
function __fish_describe_command -d "Command used to find descriptions for commands"
|
2020-02-18 00:23:56 +00:00
|
|
|
# $argv will be inserted directly into the awk regex, so it must be escaped
|
2021-03-10 06:17:23 +00:00
|
|
|
set -l argv_regex (string escape --style=regex -- "$argv")
|
2020-10-01 13:04:11 +00:00
|
|
|
__fish_apropos $argv 2>/dev/null | awk -v FS=" +- +" '{
|
2019-04-19 18:57:45 +00:00
|
|
|
split($1, names, ", ");
|
|
|
|
for (name in names)
|
2020-04-30 18:09:46 +00:00
|
|
|
if (names[name] ~ /^'"$argv_regex"'.* *\([18]\)/ ) {
|
2019-04-19 18:57:45 +00:00
|
|
|
sub( "( |\t)*\\\([18]\\\)", "", names[name] );
|
|
|
|
sub( " \\\[.*\\\]", "", names[name] );
|
|
|
|
print names[name] "\t" $2;
|
|
|
|
}
|
|
|
|
}'
|
2006-02-08 10:20:43 +00:00
|
|
|
end
|