diff options
Diffstat (limited to 'base/.zsh/fancy-man.zsh')
-rw-r--r-- | base/.zsh/fancy-man.zsh | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/base/.zsh/fancy-man.zsh b/base/.zsh/fancy-man.zsh deleted file mode 100644 index 05843dc..0000000 --- a/base/.zsh/fancy-man.zsh +++ /dev/null @@ -1,32 +0,0 @@ -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 "$@" -} |