Sublime Forum

Wrong Display of accented Greek characters in tabs

#1


On osx 10.6, with the soda theme installed. Not sure if it’s the soda theme’s fault.
The title reads ‘Ελληνικά Γράμματα’

0 Likes

#2

I’ve also noticed this on OSX when working with filenames that contain non-ascii characters. It happens even when using the default theme.

The issue is that OSX stores file paths in UTF-8 NFD normalization where latin characters with diacritics are formed via the latin character, a combining character and then the diacritic character.

For a plugin I was working on, I used the unicodedata python module and ended up calling:

unicodedata.normalize('NFC', path)

That said, I’m pretty sure Jon must be aware of what is causing this and the solution since the sidebar is well-behaved with these filenames.

0 Likes

#3

This should be working ok in the current dev build

0 Likes

#4

Yep, it fine now :smile:

0 Likes