2013-02-02 01:11:22 +00:00
|
|
|
function man --description "Format and display the on-line manual pages"
|
2013-02-02 01:15:35 +00:00
|
|
|
|
2015-10-09 13:01:59 +00:00
|
|
|
# Work around the "builtin" manpage that everything symlinks to,
|
2013-02-02 01:11:22 +00:00
|
|
|
# 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
|
|
|
|
|
|
|
# Notice local but exported variable
|
|
|
|
set -lx MANPATH (string join : $MANPATH)
|
|
|
|
if test -z "$MANPATH"
|
|
|
|
type -q manpath; and set MANPATH (command manpath)
|
|
|
|
end
|
|
|
|
set -l fish_manpath (dirname $__fish_datadir)/fish/man
|
|
|
|
if test -d "$fish_manpath" -a -n "$MANPATH"
|
|
|
|
set MANPATH "$fish_manpath":$MANPATH
|
|
|
|
|
|
|
|
# Invoke man with this manpath, and we're done
|
|
|
|
command man $argv
|
|
|
|
return
|
2013-02-02 01:11:22 +00:00
|
|
|
end
|
|
|
|
|
2015-10-09 13:01:59 +00:00
|
|
|
# If fish's man pages could not be found, just invoke man normally
|
2013-02-02 01:11:22 +00:00
|
|
|
command man $argv
|
|
|
|
end
|