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
autoload is a zsh builtin, its doc can be found in man zhsbuiltins.
-U: alias expansion is suppressed when the function is loaded.
-z: The flags -z and -k mark the function to be autoloaded using the zsh or ksh style, as if the option KSH_AUTOLOAD were unset or were set, respectively
the meaning of KSH_AUTOLOAD is defined in man zhsoptions:
Emulate ksh function autoloading. This means that when a function is autoloaded, the corresponding file is merely executed, and must define the function itself. (By default, the function is defined to the contents of the file. However, the most common ksh-style case - of the file containing only a simple definition of the function - is always handled in the ksh-compatible manner.)
autoload
is a zsh builtin, its doc can be found inman zhsbuiltins
.-U
: alias expansion is suppressed when the function is loaded.-z
: The flags-z
and-k
mark the function to be autoloaded using the zsh or ksh style, as if the optionKSH_AUTOLOAD
were unset or were set, respectivelythe meaning of
KSH_AUTOLOAD
is defined inman zhsoptions
:The text was updated successfully, but these errors were encountered: