Commit 96d04b8a authored by Richard Berger's avatar Richard Berger
Browse files

Update LAMMPS lexer for docs

parent 8d427b54
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ class LAMMPSLexer(RegexLexer):
            (r'[\w_\.\[\]]+', Name),
            (r'\$[\w_]+', Name.Variable),
            (r'\s+', Whitespace),
            (r'[\+\-\*\/&=<>]', Operator),
            (r'[\+\-\*\^\|\/\!%&=<>]', Operator),
        ],
        'variable' : [
            ('[^\}]+', Name.Variable),