You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
434 B
24 lines
434 B
#
|
|
# Opens man pages in Dash.app.
|
|
#
|
|
# Authors:
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
#
|
|
|
|
function mand {
|
|
if (( $# > 0 )); then
|
|
zstyle -s ':prezto:module:osx:man' dash-keyword 'dashkw' || dashkw='manpages'
|
|
open "dash://$dashkw:$1" 2> /dev/null
|
|
if (( $? != 0 )); then
|
|
print "$0: Dash is not installed" >&2
|
|
break
|
|
fi
|
|
else
|
|
print 'What manual page do you want?' >&2
|
|
fi
|
|
|
|
unset dashkw
|
|
}
|
|
|
|
mand "$@"
|