diff options
author | dana <dana@dana.is> | 2020-01-05 12:03:59 -0600 |
---|---|---|
committer | dana <dana@dana.is> | 2020-01-05 12:04:46 -0600 |
commit | 2e521d7b631e46d64ac8b274c8fe84bf21cb83ea (patch) | |
tree | 2c725c3749bc0940380fa9a7fce44c25a2541e19 /Doc/Zsh/compwid.yo | |
parent | 41e35f24f7df44f456dca3cf98535bab3b912a39 (diff) | |
download | zsh-2e521d7b631e46d64ac8b274c8fe84bf21cb83ea.tar.gz zsh-2e521d7b631e46d64ac8b274c8fe84bf21cb83ea.tar.xz zsh-2e521d7b631e46d64ac8b274c8fe84bf21cb83ea.zip |
45184: Clarify documentation of %-sequences understood by compadd -[Xx]
Diffstat (limited to 'Doc/Zsh/compwid.yo')
-rw-r--r-- | Doc/Zsh/compwid.yo | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Doc/Zsh/compwid.yo b/Doc/Zsh/compwid.yo index b74db8408..0b98d07b2 100644 --- a/Doc/Zsh/compwid.yo +++ b/Doc/Zsh/compwid.yo @@ -590,6 +590,30 @@ different name spaces. item(tt(-X) var(explanation))( The var(explanation) string will be printed with the list of matches, above the group currently selected. + +Within the var(explanation), the following sequences may be used to +specify output attributes +ifnzman((see noderef(Prompt Expansion)))\ +ifzman(as described in the section EXPANSION OF PROMPT SEQUENCES in +zmanref(zshmisc)): +`tt(%B)', `tt(%S)', `tt(%U)', `tt(%F)', `tt(%K)' and their lower case +counterparts, as well as `tt(%{)...tt(%})'. `tt(%F)', `tt(%K)' and +`tt(%{)...tt(%})' take arguments in the same form as prompt +expansion. (Note that the sequence `tt(%G)' is not available; an +argument to `tt(%{)' should be used instead.) The sequence `tt(%%)' +produces a literal `tt(%)'. + +These sequences are most often employed by users when customising the +tt(format) style +(see +ifzman(zmanref(zshcompsys))\ +ifnzman(noderef(Completion System))\ +), +but they must also be taken into account when writing completion +functions, as passing descriptions with unescaped `tt(%)' characters +to utility functions such as tt(_arguments) and tt(_message) may +produce unexpected results. If arbitrary text is to be passed in a +description, it can be escaped using e.g. tt(${my_str//\%/%%}). ) item(tt(-x) var(message))( Like tt(-X), but the var(message) will be printed even if there are no |