From 6274ac25fab2efe4ae28e63688720f4e62551315 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Sun, 10 May 2015 10:21:11 +0200 Subject: [PATCH] Fix TokenizedLine::copy for new representation --- src/tokenized-line.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tokenized-line.coffee b/src/tokenized-line.coffee index f8204ee51..a990c3fe3 100644 --- a/src/tokenized-line.coffee +++ b/src/tokenized-line.coffee @@ -158,7 +158,7 @@ class TokenizedLine delta copy: -> - new TokenizedLine({@tokens, @lineEnding, @ruleStack, @startBufferColumn, @fold}) + new TokenizedLine({@parentScopes, @text, @tags, @lineEnding, @ruleStack, @startBufferColumn, @fold}) # This clips a given screen column to a valid column that's within the line # and not in the middle of any atomic tokens.