Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PyCharm, how to change the font of the Quick Documentation window

I'm using PyCharm 2016.1 on windows 7 with its locale set to PRC-Chinese.

In the Quick Documentation window, the first-2-lines look odd (some Chinese-SimSun font?). However, the last line is fine.

How can I change the font of those odd lines?
(hacking into some CSS in some jar?)

ugly-quick-doc-window

I've already changed the editor font to Consolas (its default value was also the odd SimSun)

like image 614
caoanan Avatar asked Jul 12 '16 04:07

caoanan


1 Answers

In idea, I add code below into idea64.exe.vmoptions, this changes SimSun to Courier New when display code in documentation, much better at least, hope it works for you.

-Duser.language=en
-Duser.region=US
-Dfile.encoding=UTF-8
like image 188
Zahs Avatar answered Nov 19 '22 00:11

Zahs