diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-10-11 12:19:23 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-10-11 12:19:23 +0000 |
commit | adf79659510ed08c78bb4ccb881a5c03ef2e6759 (patch) | |
tree | 8d2388a2435c7648b253a01d130be5ce1146419c /Src/Zle/complist.c | |
parent | 5d8adbee0753795e7903b40847e17c879766dbf7 (diff) | |
download | zsh-adf79659510ed08c78bb4ccb881a5c03ef2e6759.tar.gz zsh-adf79659510ed08c78bb4ccb881a5c03ef2e6759.tar.xz zsh-adf79659510ed08c78bb4ccb881a5c03ef2e6759.zip |
add _all_matcher completer and supporting C-code for adding a special match representing all other matches; remove completions style from _expand(|_word) (12960)
Diffstat (limited to 'Src/Zle/complist.c')
-rw-r--r-- | Src/Zle/complist.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Src/Zle/complist.c b/Src/Zle/complist.c index a7dbf6412..2334a2612 100644 --- a/Src/Zle/complist.c +++ b/Src/Zle/complist.c @@ -1375,6 +1375,10 @@ clprintm(Cmgroup g, Cmatch *mp, int mc, int ml, int lastc, int width, return 0; } m = *mp; + + if ((m->flags & CMF_ALL) && (!m->disp || !m->disp[0])) + bld_all_str(m); + mlastm = m->gnum; if (m->disp && (m->flags & CMF_DISPLINE)) { if (mselect >= 0) { |