2006-02-08 18:20:43 +08:00
|
|
|
#
|
|
|
|
# This function is used internally by the fish command completion code
|
|
|
|
#
|
|
|
|
|
2020-01-06 01:35:59 +08:00
|
|
|
# macOS 10.15 "Catalina" has some major issues.
|
|
|
|
# The whatis database is non-existent, so apropos tries (and fails) to create it every time,
|
|
|
|
# which takes about half a second.
|
|
|
|
#
|
|
|
|
# So we disable this entirely in that case.
|
|
|
|
if test (uname) = Darwin
|
|
|
|
set -l darwin_version (uname -r | string split .)
|
2020-05-01 21:28:35 +08:00
|
|
|
# macOS 15 is Darwin 19, this is an issue up to and including 10.15.3.
|
|
|
|
if test "$darwin_version[1]" = 19 -a "$darwin_version[2]" -le 3
|
2020-01-14 03:34:22 +08:00
|
|
|
function __fish_describe_command
|
|
|
|
end
|
2020-01-06 01:35:59 +08:00
|
|
|
# (remember: exit when `source`ing only exits the file, not the shell)
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-02-18 10:13:04 +08: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 18:20:43 +08:00
|
|
|
function __fish_describe_command -d "Command used to find descriptions for commands"
|
2020-02-18 08:23:56 +08:00
|
|
|
# $argv will be inserted directly into the awk regex, so it must be escaped
|
|
|
|
set -l argv_regex (string escape --style=regex "$argv")
|
2019-04-20 02:57:45 +08:00
|
|
|
apropos $argv 2>/dev/null | awk -v FS=" +- +" '{
|
|
|
|
split($1, names, ", ");
|
|
|
|
for (name in names)
|
2020-05-01 02:09:46 +08:00
|
|
|
if (names[name] ~ /^'"$argv_regex"'.* *\([18]\)/ ) {
|
2019-04-20 02:57:45 +08:00
|
|
|
sub( "( |\t)*\\\([18]\\\)", "", names[name] );
|
|
|
|
sub( " \\\[.*\\\]", "", names[name] );
|
|
|
|
print names[name] "\t" $2;
|
|
|
|
}
|
|
|
|
}'
|
2006-02-08 18:20:43 +08:00
|
|
|
end
|
2019-04-20 02:57:45 +08:00
|
|
|
|