diff options
| author | Oliver Kiddle <opk@zsh.org> | 2016-10-13 10:03:13 +0200 |
|---|---|---|
| committer | Oliver Kiddle <opk@zsh.org> | 2016-10-13 10:03:13 +0200 |
| commit | 7b3ec54ebe05e9f5d415f95ed9c5c3f39a1e60a2 (patch) | |
| tree | 87a0b6b0c5cea229855198c5a5cad647b67114a1 | |
| parent | 39533: add the new -L option, sort options and add some exclusions (diff) | |
| download | zsh-7b3ec54ebe05e9f5d415f95ed9c5c3f39a1e60a2.tar zsh-7b3ec54ebe05e9f5d415f95ed9c5c3f39a1e60a2.tar.gz zsh-7b3ec54ebe05e9f5d415f95ed9c5c3f39a1e60a2.tar.bz2 zsh-7b3ec54ebe05e9f5d415f95ed9c5c3f39a1e60a2.tar.lz zsh-7b3ec54ebe05e9f5d415f95ed9c5c3f39a1e60a2.tar.xz zsh-7b3ec54ebe05e9f5d415f95ed9c5c3f39a1e60a2.tar.zst zsh-7b3ec54ebe05e9f5d415f95ed9c5c3f39a1e60a2.zip | |
39611: with _arguments sets completion stopped if one of the rest arguments starts with a dash
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | Src/Zle/computil.c | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2016-10-13 Oliver Kiddle <opk@zsh.org> + * 39611: Src/Zle/computil.c: with _arguments sets completion + stopped if one of the rest arguments starts with a dash + * 39533: Matthew Martin: Completion/Unix/Command/_doas: add the new -L option, sort options and add some exclusions diff --git a/Src/Zle/computil.c b/Src/Zle/computil.c index e9bad1cab..cb3c32f1f 100644 --- a/Src/Zle/computil.c +++ b/Src/Zle/computil.c @@ -2158,7 +2158,8 @@ ca_parse_line(Cadef d, int multi, int first) state.opt = 0; else state.curopt = NULL; - } else if (multi && (*line == '-' || *line == '+') && cur != compcurrent + } else if (multi && (*line == '-' || *line == '+') && cur != compcurrent && + ca_get_opt(d, line, 0, NULL) #if 0 /**** Ouch. Using this will disable the mutual exclusion of different sets. Not using it will make the -A |
