2013-05-21 19:46:42 +02:00
|
|
|
#
|
|
|
|
# Opens man pages in Dash.app.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
|
|
|
function mand {
|
|
|
|
if (( $# > 0 )); then
|
2017-07-23 00:43:39 +02:00
|
|
|
zstyle -s ':prezto:module:osx:man' dash-keyword 'dashkw' || dashkw='manpages'
|
2021-03-01 04:30:59 +01:00
|
|
|
open "dash://$dashkw%3A$1" 2> /dev/null
|
2013-05-21 19:46:42 +02:00
|
|
|
if (( $? != 0 )); then
|
|
|
|
print "$0: Dash is not installed" >&2
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
print 'What manual page do you want?' >&2
|
|
|
|
fi
|
2017-07-23 00:43:39 +02:00
|
|
|
|
|
|
|
unset dashkw
|
2013-05-21 19:46:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mand "$@"
|