AnthonyDiGirolamo / airline-themes

vim-airline themes https://github.com/vim-airline/vim-airline-themes for emacs powerline https://github.com/milkypostman/powerline
MIT License
123 stars 20 forks source link

Wierd large powerline symbols on graphical emacs #32

Closed GaryOma closed 6 years ago

GaryOma commented 6 years ago

I am using the latest emacs version (26.1) and powerline on a linux machine. The problem is that on graphical emacs, I have very large powerline symbols : image

And on the terminal version it is the normal symbols: image

This "bug" happened recently but I really don't know how, at the beginning it all worked perfectly.

Here is how I load powerline theme in my .emacs file :

(require 'airline-themes)
(load-theme 'airline-powerlineish)
(setq powerline-utf-8-separator-left        #xe0b0
      powerline-utf-8-separator-right       #xe0b2
      airline-utf-glyph-separator-left      #xe0b0
      airline-utf-glyph-separator-right     #xe0b2
      airline-utf-glyph-subseparator-left   #xe0b1
      airline-utf-glyph-subseparator-right  #xe0b3
      airline-utf-glyph-branch              #xe0a0
      airline-utf-glyph-readonly            #xe0a2
      airline-utf-glyph-linenumber          #xe0a1)

If anyone can help me ?

GaryOma commented 6 years ago

Oh my bad, I juste had to remove this:

(setq powerline-utf-8-separator-left        #xe0b0
      powerline-utf-8-separator-right       #xe0b2
      airline-utf-glyph-separator-left      #xe0b0
      airline-utf-glyph-separator-right     #xe0b2
      airline-utf-glyph-subseparator-left   #xe0b1
      airline-utf-glyph-subseparator-right  #xe0b3
      airline-utf-glyph-branch              #xe0a0
      airline-utf-glyph-readonly            #xe0a2
      airline-utf-glyph-linenumber          #xe0a1)

Fixed