diff options
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 |