Added Bwana to OS X plugin.
This commit is contained in:
parent
3f5bcafb46
commit
daf6f78f14
4
init.zsh
4
init.zsh
@ -65,7 +65,9 @@ done
|
|||||||
|
|
||||||
# Set environment variables for launchd processes.
|
# Set environment variables for launchd processes.
|
||||||
if [[ "$OSTYPE" == darwin* ]]; then
|
if [[ "$OSTYPE" == darwin* ]]; then
|
||||||
launchctl setenv PATH "$PATH" &!
|
for env_var in PATH MANPATH; do
|
||||||
|
launchctl setenv "$env_var" "${(P)env_var}" &!
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Load and run the prompt theming system.
|
# Load and run the prompt theming system.
|
||||||
|
18
plugins/osx/functions/manb
Normal file
18
plugins/osx/functions/manb
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Open man pages in Bwana.
|
||||||
|
function manb() {
|
||||||
|
local page
|
||||||
|
if (( $# > 0 )); then
|
||||||
|
for page in "$@"; do
|
||||||
|
open "man:$page" 2>/dev/null
|
||||||
|
if (( $? != 0 )); then
|
||||||
|
print "$0: Bwana is not installed" >&2
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
else
|
||||||
|
print 'What manual page do you want?' >&2
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
compdef _man manb
|
||||||
|
manb "$@"
|
||||||
|
|
Reference in New Issue
Block a user