simple array highlighting bugfix

--HG--
branch : pmacs2
This commit is contained in:
Erik Osheim 2009-08-10 15:29:35 -04:00
parent cfab8fa28f
commit fb79f41c38
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ scalar_rules = [
PatternRule('perl.array', r"\@(?= *{)"),
PatternRule('perl.array', r'\@[_\+\-]'),
PatternRule('perl.array', r"\@\$*" + word2),
PatternRule('perl.array', r'\$' + word2 + '(?= *\[)'),
PatternRule('perl.array', r'\$' + word2 + '(?=\[)'),
PatternRule('perl.hash', r"\%(?= *{)"),
PatternRule('perl.hash', r'\%(?:[!]|^H)'),