mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-06-14 11:51:42 +00:00
[#23] Rename plugins to modules
This commit is contained in:
20
modules/osx/functions/manp
Normal file
20
modules/osx/functions/manp
Normal file
@ -0,0 +1,20 @@
|
||||
#
|
||||
# Opens man pages in Preview.app.
|
||||
#
|
||||
# Authors:
|
||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||
#
|
||||
|
||||
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 "$@"
|
||||
|
Reference in New Issue
Block a user