recent versions of zsh flag functions declared w/o explicit 'function' specifier as defined based on an alias, causing a parsing error and disabling the function in the shell upon launch. Explicit 'function' specifier added, and problem is fixed

This commit is contained in:
shane1027 2017-08-30 16:05:58 -04:00
parent d848c94804
commit 472705dd48

View File

@ -16,7 +16,7 @@ EOF
fi fi
fi fi
man() { function man() {
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") \