1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-01 16:20:27 +00:00
prezto/modules/osx/functions/manp
2023-01-29 23:04:58 -08:00

20 lines
320 B
Plaintext

#
# Opens man pages in Preview.app.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
function manp {
local page
if (( $# > 0 )); then
for page in "$@"; do
mandoc -T pdf "$(/usr/bin/man -w $page)" | open -fa Preview
done
else
print 'What manual page do you want?' >&2
fi
}
manp "$@"