2006-02-08 10:20:43 +00:00
|
|
|
#
|
|
|
|
# This function is used internally by the fish command completion code
|
|
|
|
#
|
|
|
|
|
2020-01-05 17:35:59 +00: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 .)
|
|
|
|
# macOS 15 is Darwin 19, this is an issue at least up to 10.15.3.
|
|
|
|
# If this is fixed in later versions uncomment the second check.
|
|
|
|
if test "$darwin_version[1]" = 19 # -a "$darwin_version[2]" -le 3
|
2020-01-13 19:34:22 +00:00
|
|
|
function __fish_describe_command
|
|
|
|
end
|
2020-01-05 17:35:59 +00:00
|
|
|
# (remember: exit when `source`ing only exits the file, not the shell)
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2006-02-08 10:20:43 +00:00
|
|
|
function __fish_describe_command -d "Command used to find descriptions for commands"
|
2019-04-19 18:57:45 +00:00
|
|
|
# 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
|
2019-05-05 11:33:35 +00:00
|
|
|
type -q apropos; or return
|
2019-04-19 18:57:45 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}'
|
2006-02-08 10:20:43 +00:00
|
|
|
end
|
2019-04-19 18:57:45 +00:00
|
|
|
|