2013-02-02 01:11:22 +00:00
|
|
|
function man --description "Format and display the on-line manual pages"
|
2016-11-28 05:27:22 +00:00
|
|
|
# Work around the "builtin" manpage that everything symlinks to,
|
|
|
|
# by prepending our fish datadir to man. This also ensures that man gives fish's
|
|
|
|
# man pages priority, without having to put fish's bin directories first in $PATH
|
2015-10-09 13:01:59 +00:00
|
|
|
|
2017-07-04 20:43:06 +00:00
|
|
|
set -l manpath
|
|
|
|
if set -q MANPATH
|
|
|
|
set manpath $MANPATH
|
|
|
|
else if command -qs manpath
|
|
|
|
set manpath (command manpath)
|
2016-11-28 05:27:22 +00:00
|
|
|
end
|
2017-07-04 20:43:06 +00:00
|
|
|
# Notice local exported copy of the variable.
|
|
|
|
set -lx MANPATH $manpath
|
|
|
|
|
2018-03-12 13:34:20 +00:00
|
|
|
set -l fish_manpath (dirname $__fish_data_dir)/fish/man
|
2016-11-28 05:27:22 +00:00
|
|
|
if test -d "$fish_manpath" -a -n "$MANPATH"
|
2017-07-04 20:43:06 +00:00
|
|
|
set MANPATH $fish_manpath:$MANPATH
|
|
|
|
# Invoke man with this manpath, and we're done.
|
2016-11-28 05:27:22 +00:00
|
|
|
command man $argv
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# If fish's man pages could not be found, just invoke man normally
|
|
|
|
command man $argv
|
2013-02-02 01:11:22 +00:00
|
|
|
end
|