mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +00:00
46911a5e7f
Dealing with macOS output in a fast manner using `string` is surprisingly hard, given that it features lines like
gls(1), ls(1) - list directory contents
Printing the "gls" with the description and the "ls" with the description requires a `while read` loop, and that's too slow.
This reverts commit 7784a5f23c
.
[ci skip]
22 lines
745 B
Fish
22 lines
745 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"
|
|
# We're going to try to build a regex out of $argv inside awk.
|
|
# Make sure $argv has no special characters.
|
|
# TODO: stop interpolating argv into regex, and remove this hack.
|
|
string match --quiet --regex '^[a-zA-Z0-9_ ]+$' -- "$argv"
|
|
or return
|
|
type -q apropos; or return
|
|
apropos $argv 2>/dev/null | awk -v FS=" +- +" '{
|
|
split($1, names, ", ");
|
|
for (name in names)
|
|
if (names[name] ~ /^'"$argv"'.* *\([18]\)/ ) {
|
|
sub( "( |\t)*\\\([18]\\\)", "", names[name] );
|
|
sub( " \\\[.*\\\]", "", names[name] );
|
|
print names[name] "\t" $2;
|
|
}
|
|
}'
|
|
end
|
|
|