diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2001-05-08 15:09:56 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2001-05-08 15:09:56 +0000 |
commit | b8fd7a31bdce7a6e426e661644c0be21723a2962 (patch) | |
tree | 20f493ae39f9c6a7d2bf1c63664500603465f724 /Completion | |
parent | 83032fe8761f8830f4894aad6e84cbe46bbe7512 (diff) | |
download | zsh-b8fd7a31bdce7a6e426e661644c0be21723a2962.tar.gz zsh-b8fd7a31bdce7a6e426e661644c0be21723a2962.tar.xz zsh-b8fd7a31bdce7a6e426e661644c0be21723a2962.zip |
Remove unnecessary '*' from pattern.
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Zsh/Context/_subscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Zsh/Context/_subscript b/Completion/Zsh/Context/_subscript index 516c8cae9..224fbb148 100644 --- a/Completion/Zsh/Context/_subscript +++ b/Completion/Zsh/Context/_subscript @@ -8,7 +8,7 @@ if [[ "$1" = -q ]]; then shift fi -compset -P '\(([^\(\)]|*\(*\)*)##\)' # remove subscript flags +compset -P '\(([^\(\)]|\(*\))##\)' # remove subscript flags if [[ "$PREFIX" = :* ]]; then _wanted characters expl 'character class' \ |