Skip to content

Commit

Permalink
Merge pull request #212 from ideasman42/patch-1
Browse files Browse the repository at this point in the history
Ascii theme had odd spacing
  • Loading branch information
aborn authored Dec 29, 2016
2 parents fa8c4fb + 3ef5d25 commit 79151f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neotree.el
Original file line number Diff line number Diff line change
Expand Up @@ -1164,8 +1164,8 @@ Optional NODE-NAME is used for the `icons' theme"
(and (equal name 'close) (insert (all-the-icons-icon-for-dir node-name "right")))
(and (equal name 'leaf) (insert (format "\t\t\t%s\t" (all-the-icons-icon-for-file node-name))))))
(t
(or (and (equal name 'open) (funcall n-insert-symbol "-"))
(and (equal name 'close) (funcall n-insert-symbol "+")))))))
(or (and (equal name 'open) (funcall n-insert-symbol "- "))
(and (equal name 'close) (funcall n-insert-symbol "+ ")))))))

(defun neo-buffer--save-cursor-pos (&optional node-path line-pos)
"Save cursor position.
Expand Down

0 comments on commit 79151f7

Please sign in to comment.