parent
232313e2a0
commit
00e12b7a98
@ -1,8 +1,8 @@
|
|||||||
#compdef manp
|
#compdef mand manp
|
||||||
#autoload
|
#autoload
|
||||||
|
|
||||||
#
|
#
|
||||||
# Completes manp.
|
# Completes mand and manp.
|
||||||
#
|
#
|
||||||
# Authors:
|
# Authors:
|
||||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
@ -0,0 +1,21 @@
|
|||||||
|
#
|
||||||
|
# Opens man pages in Dash.app.
|
||||||
|
#
|
||||||
|
# Authors:
|
||||||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||||
|
#
|
||||||
|
|
||||||
|
function mand {
|
||||||
|
if (( $# > 0 )); then
|
||||||
|
open "dash://manpages:$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
|
||||||
|
}
|
||||||
|
|
||||||
|
mand "$@"
|
||||||
|
|
Loading…
Reference in new issue