3

次のような崇高なプロジェクトファイルがあります。

{
"default_encoding": "Central European (ISO 8859-2)",
"fallback_encoding": "Central European (ISO 8859-2)",
"folders":
[
    {
        "folder_exclude_patterns":
        [
            "*.Trash*"
        ],
        "follow_symlinks": true,
        "path": "cok_gnb"
    },
    {
        "follow_symlinks": true,
        "path": "Dokumenty"
    }
],
"settings":
{
    "line_padding_bottom": 3,
    "tab_size": 4
}
}

オプション: "default_encoding" と "fallback_encoding" は効果がありません - ST2 ファイルを開くと、既に Windows 1252 エンコーディングで開かれています。

どうしたの?ST2にエンコーディングを強制的に使用させる別のオプションがあるでしょうか?

「エンコーディングで開く」メニューオプションを使用するのを忘れて大きなファイルを台無しにし、時々それを削除してリポジトリから再度プルする必要があるとイライラします。

私は OpenSuse 12.3 を使用しています。

4

1 に答える 1

9

あなたが配置する必要があり"default_encoding"ます"fallback_encoding""settings"

{
    "folders":
    [
        {
            "folder_exclude_patterns":
            [
                "*.Trash*"
            ],
            "follow_symlinks": true,
            "path": "cok_gnb"
        },
        {
            "follow_symlinks": true,
            "path": "Dokumenty"
        }
    ],
    "settings":
    {
        "default_encoding": "Central European (ISO 8859-2)",
        "fallback_encoding": "Central European (ISO 8859-2)",
        "line_padding_bottom": 3,
        "tab_size": 4
    }
}
于 2013-11-22T12:34:54.400 に答える