diff options
author | Anteru <bitbucket@ca.sh13.net> | 2018-12-21 16:23:58 +0000 |
---|---|---|
committer | Anteru <bitbucket@ca.sh13.net> | 2018-12-21 16:23:58 +0000 |
commit | 5e5f02aa70471bafc6f4b61101e2099514596b91 (patch) | |
tree | df0cc3084d797532d585780b3b9f4793da1b263b /pygments/lexers/inferno.py | |
parent | ead0ddfe75a8ae8e051d3c4cbc780a472e107654 (diff) | |
parent | 2fcf07e09ccb72b7b2e73cffa8492fa0d5cb23db (diff) | |
download | pygments-5e5f02aa70471bafc6f4b61101e2099514596b91.tar.gz |
Merged in bgcook/pygments-main (pull request #760)
add Slurm script parser
Diffstat (limited to 'pygments/lexers/inferno.py')
-rw-r--r-- | pygments/lexers/inferno.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/inferno.py b/pygments/lexers/inferno.py index 5fc5a0ba..0d68856d 100644 --- a/pygments/lexers/inferno.py +++ b/pygments/lexers/inferno.py @@ -64,7 +64,7 @@ class LimboLexer(RegexLexer): (r'(byte|int|big|real|string|array|chan|list|adt' r'|fn|ref|of|module|self|type)\b', Keyword.Type), (r'(con|iota|nil)\b', Keyword.Constant), - ('[a-zA-Z_]\w*', Name), + (r'[a-zA-Z_]\w*', Name), ], 'statement' : [ include('whitespace'), |