diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Doc/Zsh/compsys.yo | 12 |
2 files changed, 9 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog index 5abf8301b..37b3b1e28 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2000-05-03 Sven Wischnowsky <wischnow@informatik.hu-berlin.de> + * 11094: Doc/Zsh/compsys.yo: more doc fixes + * 11092: Completion/Base/_arguments, Src/Zle/compcore.c: make sure that completion messages are displayed even when there are no matches diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo index 8a0d135f3..7df485767 100644 --- a/Doc/Zsh/compsys.yo +++ b/Doc/Zsh/compsys.yo @@ -2921,11 +2921,13 @@ exclusive. Such a list is given in parentheses at the beginning, as in `tt((-two -three 1)-one:...)' or `tt((-foo):...)'. In the first example, the options `tt(-two)' and `tt(-three)' and the first argument will not be offered as possible completions if the option -`tt(-one)' is on the line before the cursor. Also, the list may -contain a single star as one of its elements to specify that the -description for the rest arguments should not be used and it may -contain a colon to specify that the descriptions for all normal -(non-option-) arguments should not be used. +`tt(-one)' is on the line before the cursor and in the second example +the argument described by the specification will not be offered if the +option tt(-foo) is on the line. Also, the list may contain a single +star as one of its elements to specify that the description for the +rest arguments should not be used and it may contain a colon to +specify that the descriptions for all normal (non-option-) arguments +should not be used. In each of the cases above, the var(action) says how the possible completions should be generated. In cases where only one of a fixed |