diff options
author | Dietmar Winkler <Dietmar.Winkler@dwe.no> | 2014-01-15 13:26:50 +0100 |
---|---|---|
committer | Dietmar Winkler <Dietmar.Winkler@dwe.no> | 2014-01-15 13:26:50 +0100 |
commit | c1559dbaaf96b70f9d7f42639dcc90c1164762a7 (patch) | |
tree | 0bf70e342873e19b93969cf85f07fb2be4fb5cab | |
parent | 8389d574c3894c6b8aafb8fbb6a984ab74a073a7 (diff) | |
download | pygments-c1559dbaaf96b70f9d7f42639dcc90c1164762a7.tar.gz |
Added some Modelica 3.3 Clock operators
-rw-r--r-- | pygments/lexers/other.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py index dc16954a..ffaa40cc 100644 --- a/pygments/lexers/other.py +++ b/pygments/lexers/other.py @@ -1253,9 +1253,10 @@ class ModelicaLexer(RegexLexer): r'tanh|zeros)\b', Name.Function), ], 'operators': [ - (r'(actualStream|and|assert|cardinality|change|Clock|delay|der|edge|' - r'hold|homotopy|initial|inStream|noEvent|not|or|pre|previous|reinit|' - r'return|sample|smooth|spatialDistribution|subSample|terminal|' + (r'(actualStream|and|assert|backSample|cardinality|change|Clock|' + r'delay|der|edge|hold|homotopy|initial|inStream|noClock|noEvent|' + r'not|or|pre|previous|reinit|return|sample|smooth|' + r'spatialDistribution|shiftSample|subSample|superSample|terminal|' r'terminate)\b', Name.Builtin), ], 'classes': [ |