mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
Add option to color any help command
This allows you to use `colored git log --help` for example, to get colored output.
This commit is contained in:
parent
b4007b5400
commit
23688fc7ab
1 changed files with 6 additions and 2 deletions
|
@ -16,7 +16,7 @@ EOF
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
function man() {
|
function colored() {
|
||||||
env \
|
env \
|
||||||
LESS_TERMCAP_mb=$(printf "\e[1;31m") \
|
LESS_TERMCAP_mb=$(printf "\e[1;31m") \
|
||||||
LESS_TERMCAP_md=$(printf "\e[1;31m") \
|
LESS_TERMCAP_md=$(printf "\e[1;31m") \
|
||||||
|
@ -28,5 +28,9 @@ function man() {
|
||||||
PAGER="${commands[less]:-$PAGER}" \
|
PAGER="${commands[less]:-$PAGER}" \
|
||||||
_NROFF_U=1 \
|
_NROFF_U=1 \
|
||||||
PATH="$HOME/bin:$PATH" \
|
PATH="$HOME/bin:$PATH" \
|
||||||
man "$@"
|
"$@"
|
||||||
|
}
|
||||||
|
|
||||||
|
function man() {
|
||||||
|
colored man "$@"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue