mirror of
https://github.com/atom/atom.git
synced 2026-01-22 13:28:01 -05:00
Do render indent guides for tokens with leading whitespace
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user