diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2006-12-01 10:23:06 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2006-12-01 10:23:06 +0000 |
commit | 6b1b34d1da6b0db599c026e17df011ad6c6b3a30 (patch) | |
tree | 3559a344ebd62a8b0af17c70b9b0fdaeae5e2299 /Doc/Zsh/compsys.yo | |
parent | ab8b8026dcc17f7c3d8dcfba7dba046b1ac7c42b (diff) | |
download | zsh-6b1b34d1da6b0db599c026e17df011ad6c6b3a30.tar.gz zsh-6b1b34d1da6b0db599c026e17df011ad6c6b3a30.tar.xz zsh-6b1b34d1da6b0db599c026e17df011ad6c6b3a30.zip |
c.f. 23023: new calendar function system.
Diffstat (limited to 'Doc/Zsh/compsys.yo')
-rw-r--r-- | Doc/Zsh/compsys.yo | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo index de8f18094..d8e43ea77 100644 --- a/Doc/Zsh/compsys.yo +++ b/Doc/Zsh/compsys.yo @@ -1361,10 +1361,14 @@ specified will always be completed. kindex(file-list, completion style) item(tt(file-list))( This style controls whether files completed using the standard builtin -mechanism are to be listed with a long list similar to tt(ls -l) -(although note that this feature actually uses the shell module +mechanism are to be listed with a long list similar to tt(ls -l). +Note that this feature uses the shell module tt(zsh/stat) for file information; this loads the builtin tt(stat) -which will replace any external tt(stat) executable). +which will replace any external tt(stat) executable. To avoid +this the following code can be included in an initialization file: + +example(zmodload -i zsh/stat +disable stat) The style may either be set to a true value (or `tt(all)'), or one of the values `tt(insert)' or `tt(list)', indicating that files |