mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
Improved the launching of man pages in Preview.app.
This commit is contained in:
parent
cf9c37d2b4
commit
3f5bcafb46
2 changed files with 15 additions and 6 deletions
14
plugins/osx/functions/manp
Normal file
14
plugins/osx/functions/manp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Open man pages in Preview.
|
||||
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 "$@"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue