Fixing Powerline in Emacs 24.5

I recently upgraded to Emacs 24.5 and my Powerline started looking crappy:

After dealing with the crappiness for about a month, I finally got fed up and tried to figure out why.

The source of the problem appears to be that:

(I confirmed this by using the OS X picker tool to read off the RGB color of the arrow background and the sRGB color of the normal text background; they were the same. That won’t quite work on the image above because of compression artifacts, although it’s close enough.)

I couldn’t figure out how to cause the pixmaps to render in the right color space, so the solution I decided on was to switch to using Unicode glyphs for the arrow characters—certain font variants have the right shape for unicode 25b6 (“black right-pointing triangle”) and 25c0 (“black left-pointing triangle”) that extend all the way to the edge of the character box so that they can make. Someone published a Consolas variant that included a bunch of special glyphs for Powerline.

Unfortunately, the glyphs were misaligned for me:

This is due to the Consolas font metrics being improperly set—the baseline is set way too high, which causes the characters to have no “headroom” and lots of room at the bottom. Fortunately, there’s a way to fix this: I downloaded the ftxdumperfuser tool from some weird part of Apple’s website, dumped the font metrics from the font .ttf to an XML file, hand-edited the XML file, and reinstalled the metrics into the ttf.

Yuck. But now everything looks only slightly misaligned!

Comments

email me replies

format comments in markdown.

Your comment has been submitted! It should appear here within 30 minutes.
Devon Gleeson

Did you end up figuring this out?

email me replies

format comments in markdown.

Your comment has been submitted! It should appear here within 30 minutes.

Seth Price

(setq ns-use-srgb-colorspace nil)

email me replies

format comments in markdown.

Your comment has been submitted! It should appear here within 30 minutes.