You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 6, 2023. It is now read-only.
Since version 5.4.1, zsh won't allow the definition of functions using
the `name()` syntax if `name` is an alias.
In many zsh setups `cd` is probably an alias, causing an error when
avn.sh is sourced.
The recommended way to define functions is to always use the
`function` keyword, as aliases are not expanded afterwards.
See http://zsh.sourceforge.net/releases.html (5.3.1 to 5.4.1) and
http://zsh.sourceforge.net/Doc/Release/Options.html#Scripts-and-Functions
for more details.
0 commit comments