1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-09 11:13:51 +00:00
prezto/plugins/osx/functions/manb

19 lines
339 B
Plaintext
Raw Normal View History

2011-12-28 20:06:21 +00:00
# Open man pages in Bwana.
function manb() {
local page
if (( $# > 0 )); then
for page in "$@"; do
open "man:$page" 2>/dev/null
if (( $? != 0 )); then
print "$0: Bwana is not installed" >&2
break
fi
done
else
print 'What manual page do you want?' >&2
fi
}
compdef _man manb
manb "$@"