mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-23 10:51:14 -03:00
Also, remove a macOS version check that's doom to obsolescence, and extract a function (WIP).
8 lines
157 B
Fish
8 lines
157 B
Fish
function __fish_without_manpager
|
|
MANPAGER=cat WHATISPAGER=cat if test "$argv[1]" = command
|
|
command $argv[2..]
|
|
else
|
|
$argv
|
|
end
|
|
end
|