mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
a8157293a7
Some environments (in my case, cygwin) have PATH variables with directories with spaces in them, breaking colored-man. Adding quotes around the PATH environment variable makes the plugin run OK.
32 lines
761 B
Bash
32 lines
761 B
Bash
if [ "$OSTYPE[0,7]" = "solaris" ]
|
|
then
|
|
if [ ! -x ${HOME}/bin/nroff ]
|
|
then
|
|
mkdir -p ${HOME}/bin
|
|
cat > ${HOME}/bin/nroff <<EOF
|
|
#!/bin/sh
|
|
if [ -n "\$_NROFF_U" -a "\$1,\$2,\$3" = "-u0,-Tlp,-man" ]; then
|
|
shift
|
|
exec /usr/bin/nroff -u\${_NROFF_U} "\$@"
|
|
fi
|
|
#-- Some other invocation of nroff
|
|
exec /usr/bin/nroff "\$@"
|
|
EOF
|
|
chmod +x ${HOME}/bin/nroff
|
|
fi
|
|
fi
|
|
|
|
man() {
|
|
env \
|
|
LESS_TERMCAP_mb=$(printf "\e[1;31m") \
|
|
LESS_TERMCAP_md=$(printf "\e[1;31m") \
|
|
LESS_TERMCAP_me=$(printf "\e[0m") \
|
|
LESS_TERMCAP_se=$(printf "\e[0m") \
|
|
LESS_TERMCAP_so=$(printf "\e[1;44;33m") \
|
|
LESS_TERMCAP_ue=$(printf "\e[0m") \
|
|
LESS_TERMCAP_us=$(printf "\e[1;32m") \
|
|
PAGER=/usr/bin/less \
|
|
_NROFF_U=1 \
|
|
PATH="$HOME/bin:$PATH" \
|
|
man "$@"
|
|
}
|