1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-06-05 23:06:03 +02:00

Add note about kshautoload behavior.

This commit is contained in:
Bart Schaefer 2001-08-15 06:16:06 +00:00
parent fcf0d2c3d5
commit d4e7ce1b9c

View File

@ -54,3 +54,7 @@ Ksh automatically searches FPATH for any command not found in PATH, and
autoloads the file if found. The "autoload" command is only required if
you want FPATH to be searched before PATH, e.g. because the function has
the same name as a command in PATH.
Autoloading should work more like "source" when kshautoload is active.
In particular, aliases defined in the autoloaded file should be expanded
when referenced later in the same file (even when using "autoload -U").