Sublime Forum

Encoding failed at plugin's output panel

#1

Hi,

ST3.3139 (Windows 7) has encoding problem with plugins that use output panels.

For example: SQLTools or SVN, This plugins can’t show win1251 characters at output panel (question marks instead of russian letters). My ST config is

{
“default_encoding”: “Cyrillic (Windows 1251)”,
“fallback_encoding”: “Cyrillic (Windows 1251)”,
}

Any idea how to fix this? Is this problem on sublime side or at plugins?

1 Like

#2

Related to:

  1. $stackoverflow - printing UTF-8 in Python 3 using Sublime Text 3

Adding:

    "env": {"PYTHONIOENCODING": "utf8"},

Fixed my problem for python encoding errors.

0 Likes