summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMoinak Ghosh <moinakg@gmail.com>2014-07-11 18:41:49 +0530
committerMoinak Ghosh <moinakg@gmail.com>2014-07-11 18:41:49 +0530
commit5e328e3a9c0784521ae4170f7958183c352bae83 (patch)
tree9ed82ca7e9fa049242b25075663216112a9365f2 /plugins
parent5728a5608d7e802999266ff2387747e4957be938 (diff)
downloadzsh-5e328e3a9c0784521ae4170f7958183c352bae83.tar.gz
zsh-5e328e3a9c0784521ae4170f7958183c352bae83.tar.bz2
zsh-5e328e3a9c0784521ae4170f7958183c352bae83.zip
Solaris portability tweaks.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/colored-man/colored-man.plugin.zsh21
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/colored-man/colored-man.plugin.zsh b/plugins/colored-man/colored-man.plugin.zsh
index 56056284a..4956f4346 100644
--- a/plugins/colored-man/colored-man.plugin.zsh
+++ b/plugins/colored-man/colored-man.plugin.zsh
@@ -1,3 +1,21 @@
+if [ "${PLAT}" = "SunOS" ]
+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") \
@@ -7,5 +25,8 @@ man() {
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 "$@"
}