LoginSignup
10
5

More than 3 years have passed since last update.

【VSCode】ワークスペース毎に文字コードを設定する。

Last updated at Posted at 2019-10-15

メモとして残します。

ワークスペースを保存すると下記のファイルが作成される。
ワークスペース名.code-workspace
これをエディタで開き、下記のように"files.encoding": "文字コード"を追記。

■やり方

{
    "folders": [
        {
            "path": "D:\\project_tmep\\"
        }
    ],
    "settings": {
        //下記を追加
        "files.encoding": "EUC-JP"
    }
}

いちいちエンコード指定して開きなおすのは正直面倒。
欲を言えば、ディレクトリ毎に設定できたらもっといい。

10
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
5