diff options
author | Jad Altahan <xviyy@aol.com> | 2019-01-30 11:35:01 +1100 |
---|---|---|
committer | Jad Altahan <xviyy@aol.com> | 2019-01-30 11:35:01 +1100 |
commit | 08db4d86352f05d8aafcefde3f5e196951c35616 (patch) | |
tree | 7671fe9868f3ed55b2b629eec70e7584b6c93fa8 /test/lexTests.py | |
parent | b54e26a3dc5cdfbd6d49a1dd0b0c29dbab386044 (diff) | |
download | scintilla-mirror-08db4d86352f05d8aafcefde3f5e196951c35616.tar.gz |
Backport: Feature [feature-requests:#1261]. Enhance the styling of backticks in Nim
Backport of changeset 7244:a5c65813871a.
Diffstat (limited to 'test/lexTests.py')
-rw-r--r-- | test/lexTests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lexTests.py b/test/lexTests.py index eb38b7af7..46e4eb4fb 100644 --- a/test/lexTests.py +++ b/test/lexTests.py @@ -157,7 +157,7 @@ class TestLexers(unittest.TestCase): self.LexExample("x.lua", b"lua", [b"function end"]) def testNim(self): - self.LexExample("x.nim", b"nim", [b"else end if let"]) + self.LexExample("x.nim", b"nim", [b"else end if let proc"]) def testRuby(self): self.LexExample("x.rb", b"ruby", [b"class def end"]) |