mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-17 15:01:40 +02:00
35749: (c.f. Jun T: 35732): fix exclusion list for flags/modifiers
This commit is contained in:
parent
5c5654016b
commit
bada2f9a21
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2015-07-09 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* 35749: (c.f. Jun T: 35732): Completion/Unix/Type/_date_formats:
|
||||
fix exclusion list for flags/modifiers
|
||||
|
||||
2015-07-08 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* 35729: Completion/Zsh/Command/_compadd: new compadd completion
|
||||
|
|
|
@ -5,8 +5,8 @@ local -aU specs
|
|||
local -A exclusion
|
||||
|
||||
exclusion=(
|
||||
'E' '[-_^#cCgGxXyY]'
|
||||
'O' '[-_^#BdeHImMSuUVwWy]'
|
||||
'E' '[cCgGxXyY]'
|
||||
'O' '[BdeHImMSuUVwWy]'
|
||||
'-' '[OEdegHIjklmMSUz]'
|
||||
'_' '[OEdgHIjmMSUz]'
|
||||
'0' '[Oekl]'
|
||||
|
|
Loading…
Reference in a new issue