about summary refs log tree commit diff
path: root/Etc
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2001-08-07 16:19:20 +0000
committerBart Schaefer <barts@users.sourceforge.net>2001-08-07 16:19:20 +0000
commit5bb51a674df96749f7082ab8497086b4e4a4f6c7 (patch)
tree76048b0dc74b0684219b75bfb1b14822a16e20f3 /Etc
parent0519efae2771c28d4706b300129a3bc720f22356 (diff)
downloadzsh-5bb51a674df96749f7082ab8497086b4e4a4f6c7.tar.gz
zsh-5bb51a674df96749f7082ab8497086b4e4a4f6c7.tar.xz
zsh-5bb51a674df96749f7082ab8497086b4e4a4f6c7.zip
Mention FPATH semantics.
Diffstat (limited to 'Etc')
-rw-r--r--Etc/STD-TODO5
1 files changed, 5 insertions, 0 deletions
diff --git a/Etc/STD-TODO b/Etc/STD-TODO
index c6a693771..b86bd4476 100644
--- a/Etc/STD-TODO
+++ b/Etc/STD-TODO
@@ -46,3 +46,8 @@ that extended function semantics are allowed.
   variables are global in the POSIX form.  (Zsh uses local dynamic scope.)
 - XTRACE is always local and turned off in the "function" form, unless
   explicitly enabled with "typeset -ft".
+
+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.