Improved the launching of man pages in Preview.app.
This commit is contained in:
parent
cf9c37d2b4
commit
3f5bcafb46
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 "$@"
|
||||||
|
|
|
@ -11,13 +11,8 @@ function ql() {
|
||||||
(( $# > 0 )) && qlmanage -p "$@" &> /dev/null
|
(( $# > 0 )) && qlmanage -p "$@" &> /dev/null
|
||||||
}
|
}
|
||||||
|
|
||||||
# Open man pages in Preview.
|
|
||||||
function manp() {
|
|
||||||
(( $# > 0 )) && man -t "$@" | open -f -a Preview
|
|
||||||
}
|
|
||||||
compdef _man manp
|
|
||||||
|
|
||||||
# Delete .DS_Store and __MACOSX directories.
|
# Delete .DS_Store and __MACOSX directories.
|
||||||
function rm-osx-cruft() {
|
function rm-osx-cruft() {
|
||||||
find "${@:-$PWD}" \( -type f -name '.DS_Store' \) -o \( -type d -name '__MACOSX' \) -print0 | xargs rm -rf
|
find "${@:-$PWD}" \( -type f -name '.DS_Store' \) -o \( -type d -name '__MACOSX' \) -print0 | xargs rm -rf
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue