From d3b7ea475ff24169019056eaa231dce9967f958f Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Thu, 19 Feb 2015 18:58:32 +0100 Subject: [PATCH] Rename `phantomTab` to `indentToken` --- src/tokenized-line.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tokenized-line.coffee b/src/tokenized-line.coffee index 3809f46f7..932b15cd1 100644 --- a/src/tokenized-line.coffee +++ b/src/tokenized-line.coffee @@ -121,7 +121,7 @@ class TokenizedLine leftTextLength += nextToken.value.length leftTokens.push nextToken - phantomTab = leftTokens[0].buildSoftWrapIndentToken(@indentLevel * @tabLength) + indentToken = leftTokens[0].buildSoftWrapIndentToken(@indentLevel * @tabLength) leftFragment = new TokenizedLine( tokens: leftTokens @@ -133,7 +133,7 @@ class TokenizedLine tabLength: @tabLength ) rightFragment = new TokenizedLine( - tokens: [phantomTab].concat(rightTokens) + tokens: [indentToken].concat(rightTokens) startBufferColumn: @bufferColumnForScreenColumn(column) ruleStack: @ruleStack invisibles: @invisibles