sunaku / tamzen-font

💌 Bitmapped programming font, based on Tamsyn
Other
892 stars 29 forks source link

Powerline symbols don't show up on urxvt anymore #10

Closed fungible closed 8 years ago

fungible commented 8 years ago

Using archlinux. A recent update has rendered the Powerline symbols to show up as boxes in urxvt.

sunaku commented 8 years ago

Good news: I was able to reproduce the bug and used git bisect to find the offending commit da7f8e85fc0f97b3addf582d48707f97f6b944c3.

sunaku commented 8 years ago

Got it! :bulb: The encoding on those BDF fonts retained the original Tamsyn encoding since I stopped using bitmap-font-patcher to inject Powerline symbols (they're ported from my hand-tuned font instead). :neckbeard:

-CHARSET_REGISTRY "ISO10646"
+CHARSET_REGISTRY "ISO8859"

This makes URxvt think that the TamzenForPowerline fonts don't have any Unicode codepoints and so it renders boxes in place of Powerline symbols. :sweat:

sunaku commented 8 years ago

Fixed now in commit b211df998009b7e7cf64c2bbd87084b12f876bdb. :santa: Thanks for reporting this issue! :+1:

fungible commented 8 years ago

Thanks for the quick fix