From 18d6a56e82d18b975e469c51b641d332285dc96f Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 4 Apr 2014 14:46:40 -0700 Subject: [PATCH] Set maxTokensPerLine to 100 Previously this default lived in firs-mate but it belongs here since it is an Atom limitation to tokenize responsively. --- src/syntax.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/syntax.coffee b/src/syntax.coffee index c2d1b22bb..98a14f3fc 100644 --- a/src/syntax.coffee +++ b/src/syntax.coffee @@ -26,7 +26,7 @@ class Syntax extends GrammarRegistry syntax constructor: -> - super + super(maxTokensPerLine: 100) @propertyStore = new ScopedPropertyStore serialize: ->