From 715e7eed3523cb08dd1b92a4e838a09d807a730f Mon Sep 17 00:00:00 2001 From: ActiveState Date: Tue, 13 Oct 2015 12:16:26 +1100 Subject: Bug [#1765]. CoffeeScript lexer highlights ranges correctly. --- doc/ScintillaHistory.html | 4 ++++ lexers/LexCoffeeScript.cxx | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 2febf6e2e..f338b4a93 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -508,6 +508,10 @@ margin to a different width that the edit pane.
  • + CoffeeScript lexer highlights ranges correctly. + Bug #1765. +
  • +
  • Optimise marker redrawing by only drawing affected lines when markers shown in the text.
  • 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(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()) ; + } } } -- cgit v1.2.3