Browse Source

Add option to color any help command

This allows you to use `colored git log --help` for example, to get
colored output.
Iulian Onofrei 6 years ago
parent
commit
23688fc7ab
1 changed files with 6 additions and 2 deletions
  1. 6 2
      plugins/colored-man-pages/colored-man-pages.plugin.zsh

+ 6 - 2
plugins/colored-man-pages/colored-man-pages.plugin.zsh

@@ -16,7 +16,7 @@ EOF
 	fi
 fi
 
-function man() {
+function colored() {
 	env \
 		LESS_TERMCAP_mb=$(printf "\e[1;31m") \
 		LESS_TERMCAP_md=$(printf "\e[1;31m") \
@@ -28,5 +28,9 @@ function man() {
 		PAGER="${commands[less]:-$PAGER}" \
 		_NROFF_U=1 \
 		PATH="$HOME/bin:$PATH" \
-			man "$@"
+			"$@"
+}
+
+function man() {
+	colored man "$@"
 }