mirror of
https://github.com/atom/atom.git
synced 2026-01-24 06:18:03 -05:00
Use tab invisible that is available in Inconsolata
Previously a non-Inconsolata character was being used which caused alignment issues with selections and the cursor Also switch values in editor.coffee to use codes so they can be viewed in any font.
This commit is contained in:
@@ -287,9 +287,9 @@ class Editor extends View
|
||||
|
||||
setInvisibles: (@invisibles={}) ->
|
||||
_.defaults @invisibles,
|
||||
eol: '¬',
|
||||
space: '•',
|
||||
tab: '▸'
|
||||
eol: '\u00ac',
|
||||
space: '\u2022',
|
||||
tab: '\u00bb'
|
||||
@resetDisplay()
|
||||
|
||||
checkoutHead: -> @getBuffer().checkoutHead()
|
||||
|
||||
Reference in New Issue
Block a user