aboutsummaryrefslogtreecommitdiff
path: root/base/zsh/fancy-man.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'base/zsh/fancy-man.zsh')
-rw-r--r--base/zsh/fancy-man.zsh32
1 files changed, 32 insertions, 0 deletions
diff --git a/base/zsh/fancy-man.zsh b/base/zsh/fancy-man.zsh
new file mode 100644
index 0000000..05843dc
--- /dev/null
+++ b/base/zsh/fancy-man.zsh
@@ -0,0 +1,32 @@
+if [[ "$OSTYPE" = 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
+
+function man {
+ env \
+ LESS_TERMCAP_mb=$(printf "\e[1;31m") \
+ LESS_TERMCAP_md=$(printf "\e[1;34m") \
+ LESS_TERMCAP_me=$(printf "\e[0m") \
+ LESS_TERMCAP_se=$(printf "\e[0m") \
+ LESS_TERMCAP_so=$(printf "\e[1;34m") \
+ LESS_TERMCAP_ue=$(printf "\e[0m") \
+ LESS_TERMCAP_us=$(printf "\e[4;37m") \
+ PAGER="${commands[less]:-$PAGER}" \
+ _NROFF_U=1 \
+ PATH="$HOME/.bin:$PATH" \
+ man "$@"
+}