1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-08 21:33:53 +00:00
prezto/plugins/osx/functions/manp

15 lines
249 B
Plaintext
Raw Normal View History

# Open man pages in Preview.
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
}
compdef _man manp
manp "$@"