Sublime Forum

Does the tooltip support non-latin chars(Greek, Russian...)?

#1

I’m playing with a plugin that shows a pop-up with words in your dictionary, when tested with non-latin alphabets it just shows an empty space.

I’m loading the files either with sublime.load_resource or sublime.load_binary_resource(...).decode('UTF-8'), in either case no exceptions are thrown and when printed to the console are displayed properly.

0 Likes

#2

Test for yourself:

view.show_popup("α β γ δ ε ζ η θ ι κ λ μ ν ξ ο π ρ")

It’s very likely some bug in the plugin code.

0 Likes

#3

hmm tested that and still didn’t work, but in the end I found out that it is a problem with the font I am using (that automatically propagates to the tooltip by default) :confused:
The font is Inconsolata in Windows, in Linux seems to work fine though.
thanks

0 Likes