about summary refs log tree commit diff
path: root/Doc
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-01-04 15:02:25 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-01-04 15:02:25 +0000
commit01d4ad38356395d4cc47d9972b29d5643673df6f (patch)
tree482a7d08628b2fcd04c016a383938604edcdb5e7 /Doc
parentbf2b2bcce77371871c4e35eda549756c89b62fdc (diff)
downloadzsh-01d4ad38356395d4cc47d9972b29d5643673df6f.tar.gz
zsh-01d4ad38356395d4cc47d9972b29d5643673df6f.tar.xz
zsh-01d4ad38356395d4cc47d9972b29d5643673df6f.zip
zsh-workers/9199
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Zsh/compsys.yo12
1 files changed, 12 insertions, 0 deletions
diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo
index 329a07d88..331cc5096 100644
--- a/Doc/Zsh/compsys.yo
+++ b/Doc/Zsh/compsys.yo
@@ -1101,6 +1101,18 @@ history as possible matches sort these words alphabetically instead of
 keeping them in the order in which they appear in the history (from
 youngest to oldest).
 
+The completion function that generates filenames as possible matches
+uses this style with the tt(files) tag to determine in which order the 
+names should be listed and completed when using menucompletion. The
+value may be one of tt(size) to sort them by the size of the file,
+tt(links) to sort them by the number of links to the file,
+tt(modification) (or tt(time) or tt(date)) to sort them by the last
+modification time, tt(access) to sort them by the last access time, or 
+tt(inode) (or tt(change)) to sort them by the last inode change
+time. Any other value (or not setting this style at all) makes them be 
+sorted alphabetically by name. If the value contains the string
+tt(reverse), sorting is done in decreasing order.
+
 This is also used by the tt(_expand) completer. Here, if it is set to
 `true', the expansions generated will always be sorted. If it is set
 to tt(menu), then the expansions are only sorted when they are offered