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 | 86900d9f6c64e0598e5b217a1d393e55cb53602b (patch) | |
tree | 8ff373d973fcc7025b02bf24d0aee94aa387cac0 /test/lexTests.py | |
parent | 850cfb235e8e92c5b180c94f81d599f88e8cef01 (diff) | |
download | scintilla-mirror-86900d9f6c64e0598e5b217a1d393e55cb53602b.tar.gz |
Feature [feature-requests:#1261]. Enhance the styling of backticks in Nim
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"]) |