diff options
author | ActiveState <unknown> | 2015-10-13 12:16:26 +1100 |
---|---|---|
committer | ActiveState <unknown> | 2015-10-13 12:16:26 +1100 |
commit | 715e7eed3523cb08dd1b92a4e838a09d807a730f (patch) | |
tree | 8715ac0293ccb335c6b2d69922c20a6f6624ba8b /lexers/LexCoffeeScript.cxx | |
parent | 4419a43db4d20837084480a93d64805c7cac703c (diff) | |
download | scintilla-mirror-715e7eed3523cb08dd1b92a4e838a09d807a730f.tar.gz |
Bug [#1765]. CoffeeScript lexer highlights ranges correctly.
Diffstat (limited to 'lexers/LexCoffeeScript.cxx')
-rw-r--r-- | lexers/LexCoffeeScript.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lexers/LexCoffeeScript.cxx b/lexers/LexCoffeeScript.cxx index 2c3a8802c..f32560016 100644 --- a/lexers/LexCoffeeScript.cxx +++ b/lexers/LexCoffeeScript.cxx @@ -252,6 +252,10 @@ static void ColouriseCoffeeScriptDoc(Sci_PositionU startPos, Sci_Position length } } else if (isoperator(static_cast<char>(sc.ch))) { sc.SetState(SCE_COFFEESCRIPT_OPERATOR); + // Handle '..' and '...' operators correctly. + if (sc.ch == '.') { + for (int i = 0; i < 2 && sc.chNext == '.'; i++, sc.Forward()) ; + } } } |