diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2001-09-11 09:35:53 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2001-09-11 09:35:53 +0000 |
commit | f7624a71e2277d8d5303c3e1838c774f38a59e67 (patch) | |
tree | 70f4975f6b7102e2368ff4beda9383fc2a529b0c | |
parent | 9c0a97d43b96843b99685bf5fe1f945c38fc73b4 (diff) | |
download | zsh-f7624a71e2277d8d5303c3e1838c774f38a59e67.tar.gz zsh-f7624a71e2277d8d5303c3e1838c774f38a59e67.tar.xz zsh-f7624a71e2277d8d5303c3e1838c774f38a59e67.zip |
complete new [:ascii:] character class
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Zsh/Context/_subscript | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 37433f924..7664d0790 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-09-11 Oliver Kiddle <opk@zsh.org> + + * unposted: Completion/Zsh/Context/_subscript: complete ascii + character class added in 15765 + 2001-09-10 Clint Adams <clint@zsh.org> * 15783: Doc/Zsh/builtins.yo Doc/Zsh/mod_tcp.c, diff --git a/Completion/Zsh/Context/_subscript b/Completion/Zsh/Context/_subscript index 6328ba10d..9ea628fdb 100644 --- a/Completion/Zsh/Context/_subscript +++ b/Completion/Zsh/Context/_subscript @@ -12,7 +12,7 @@ compset -P '\(([^\(\)]|\(*\))##\)' # remove subscript flags if [[ "$PREFIX" = :* ]]; then _wanted characters expl 'character class' \ - compadd -p: -S ':]' alnum alpha blank cntrl digit graph \ + compadd -p: -S ':]' alnum alpha ascii blank cntrl digit graph \ lower print punct space upper xdigit elif compset -P '\('; then local match |