mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-22 04:51:12 +02:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ EOF
|
|||
fi
|
||||
fi
|
||||
|
||||
man() {
|
||||
function man() {
|
||||
env \
|
||||
LESS_TERMCAP_mb=$(printf "\e[1;31m") \
|
||||
LESS_TERMCAP_md=$(printf "\e[1;31m") \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue