prezto_config/modules/osx/functions/manp

20 lines
296 B
Plaintext
Raw Normal View History

2012-02-01 05:37:51 +01:00
#
# Opens man pages in Preview.app.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
function manp {
local page
if (( $# > 0 )); then
for page in "$@"; do
man -t "$page" | open -f -a Preview
done
else
print 'What manual page do you want?' >&2
fi
}
2012-06-14 00:04:08 +02:00
manp "$@"