Pararera
Pararera

Reputation: 372

Sublime 3 forget default charset

I have problem with default charset in Sublime 3 (x64, portable version). I converted all my .pwn and .inc files (PAWN language) to Central Europe (Windows 1250) charset and it works fine.

Problem is because Sublime forget my default charset and when I open again file(s), it sets charset to Western (Windows 1252). Is here any way to set default charset which Sublime won't forget?

I searched but I didn't found correct way(answer). Thanks.

Upvotes: 0

Views: 1186

Answers (1)

MattDMo
MattDMo

Reputation: 102852

There are two settings you can use:

"default_encoding": "UTF-8",
"fallback_encoding": "Western (Windows 1252)",

Those are the default values, just change them to Central Europe (Windows 1250) in your user preferences and you should be all set.

Upvotes: 1

Related Questions