Skip to content

Commit 84da071

Browse files
author
Alex Jeffery
committed
Use Name token type for normal variables.
1 parent 7cd9d20 commit 84da071

2 files changed

Lines changed: 79 additions & 79 deletions

File tree

pygments/lexers/rell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class RellLexer(RegexLexer):
5252
(r'[ \n\t\r]+', Whitespace),
5353
(r'@[a-zA-Z_][a-zA-Z0-9_]*', Name.Decorator),
5454
(r'[~^*!%&\[\]<>|+=/?\-@\$]', Punctuation.Marker),
55-
(ident, Name.Variable),
55+
(ident, Name),
5656
],
5757
'function': [
5858
(r'[ \n\t\r]+', Whitespace),

0 commit comments

Comments
 (0)