diff options
author | dana <dana@dana.is> | 2017-12-19 22:52:29 -0600 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2017-12-20 09:07:28 +0000 |
commit | 932ed864837b8c43e475784768bd0b00728e756c (patch) | |
tree | bcb214accfc45389c5d830d4cf122ce3434b56ec /Test | |
parent | 4b55c0f40c21a6e57fc8e71515c3f39df6a30f67 (diff) | |
download | zsh-932ed864837b8c43e475784768bd0b00728e756c.tar.gz zsh-932ed864837b8c43e475784768bd0b00728e756c.tar.xz zsh-932ed864837b8c43e475784768bd0b00728e756c.zip |
dana: 42145: Fix additional completion cases with option arguments.
Diffstat (limited to 'Test')
-rw-r--r-- | Test/Y03arguments.ztst | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Test/Y03arguments.ztst b/Test/Y03arguments.ztst index 7cbadfe8c..761b4b1d2 100644 --- a/Test/Y03arguments.ztst +++ b/Test/Y03arguments.ztst @@ -237,6 +237,27 @@ >NO:{-a} >NO:{-b} + tst_arguments '*'{-x+,--xxx=}':optarg:(1)' '*:operand:(a)' + comptest $'tst \t' + comptest $'tst -x \t' + comptest $'tst -x\t' + comptest $'tst --xxx=\t' + comptest $'tst --xxx \t' + comptest $'tst a -x\t' + comptest $'tst a -x \t' + comptest $'tst a --xxx=\t' + comptest $'tst a --xxx \t' +0:optarg completion following rest operand on line (workers/42141) +>line: {tst a }{} +>line: {tst -x 1 }{} +>line: {tst -x1 }{} +>line: {tst --xxx=1 }{} +>line: {tst --xxx 1 }{} +>line: {tst a -x1 }{} +>line: {tst a -x 1 }{} +>line: {tst a --xxx=1 }{} +>line: {tst a --xxx 1 }{} + tst_arguments '-a' '*::rest:{compadd - -b}' comptest $'tst arg -\t' 0:rest arguments |