diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2006-03-07 12:50:56 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2006-03-07 12:50:56 +0000 |
commit | e17fc5079394ce0c30dc0573676983e6f4a0a5bc (patch) | |
tree | 06981ab59bbc3b81d9d18cc8dd1daf8a7301ddad /Src/Zle/complete.c | |
parent | 1c06bba93159db354447d6edc31e76e5b1ae736c (diff) | |
download | zsh-e17fc5079394ce0c30dc0573676983e6f4a0a5bc.tar.gz zsh-e17fc5079394ce0c30dc0573676983e6f4a0a5bc.tar.xz zsh-e17fc5079394ce0c30dc0573676983e6f4a0a5bc.zip |
22328, modified: add -o option to compadd
add _list_files helper to handle new file-list style for _path_files
Diffstat (limited to 'Src/Zle/complete.c')
-rw-r--r-- | Src/Zle/complete.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Src/Zle/complete.c b/Src/Zle/complete.c index e246e2b8a..c70c8c191 100644 --- a/Src/Zle/complete.c +++ b/Src/Zle/complete.c @@ -569,6 +569,9 @@ bin_compadd(char *name, char **argv, UNUSED(Options ops), UNUSED(int func)) case 'l': dat.flags |= CMF_DISPLINE; break; + case 'o': + dat.flags |= CMF_MORDER; + break; case 'E': if (p[1]) { dat.dummies = atoi(p + 1); |