__fish_apropos: assume only /usr/bin/apropos is broken

Also, remove a macOS version check that's doom to obsolescence,
and extract a function (WIP).
This commit is contained in:
Johannes Altmanninger
2025-11-15 14:32:26 +01:00
parent 5c2073135e
commit 233355bc9b
4 changed files with 19 additions and 7 deletions

View File

@@ -0,0 +1,7 @@
function __fish_without_manpager
MANPAGER=cat WHATISPAGER=cat if test "$argv[1]" = command
command $argv[2..]
else
$argv
end
end