Do render indent guides for tokens with leading whitespace

This commit is contained in:
Nathan Sobo
2014-04-23 17:04:20 -06:00
parent 228836447c
commit aeb5a84696

View File

@@ -1487,7 +1487,7 @@ class EditorView extends View
position = 0
for token in tokens
@updateScopeStack(line, scopeStack, token.scopes)
hasIndentGuide = not mini and showIndentGuide and lineIsWhitespaceOnly
hasIndentGuide = not mini and showIndentGuide and token.hasLeadingWhitespace or (token.hasTrailingWhitespace and lineIsWhitespaceOnly)
line.push(token.getValueAsHtml({invisibles, hasIndentGuide}))
position += token.value.length