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:
parent
d848c94804
commit
472705dd48
@ -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") \
|
||||||
|
Loading…
Reference in New Issue
Block a user