From 628d22de0adedb00e4fa9edca43a940c729b5fbc Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 20 Dec 2012 14:50:48 -0800 Subject: [PATCH] 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. --- src/app/editor.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/editor.coffee b/src/app/editor.coffee index 9089433fb..774a3142a 100644 --- a/src/app/editor.coffee +++ b/src/app/editor.coffee @@ -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()