1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

vscodeでhtmlを開いた時に文字化けする

Last updated at Posted at 2021-01-31
※すげー適当に書いてるので、詳しく知りたい人はコメントしてね

環境

  • macOS Catalina 10.15.7
  • vscode 1.52.1

課題

  • Djangoのプロジェクトのthmlファイルを開いた時に文字化けしちゃう
  • 文字コードがwindows 1252とやらで開いちゃう

やりたきこと

  • htmlファイルを文字化けさせずに開きたい

試したこと

  1. 右したの文字コードをいじるとこ押して、「エンコード付きで再度開く」を選択し、utf8を選択 →成功したけど、毎回これをやる必要がありめんどい
    スクリーンショット 2021-01-31 10.33.11.png

  2. 基本設定からencodeをutf8にしてみたり、encodeの自動推測を有効にしてみたりした(ユーザー設定&ワークスペース設定両方)→失敗、、、
    スクリーンショット 2021-01-31 10.36.58.png

  3. .vscode/setting.jsonを画像の様に編集→失敗、、、
    スクリーンショット 2021-01-31 10.39.34.png

ベストアンサー

原因は拡張子htmlのファイルがhtmlファイルとして認識されていなかったことみたい。

こちらの記事を参考に設定したらうまくいった!!!

  1. 右下の言語モードの選択の部分をクリック
  2. (あとはがんばれ!)

/Library/Application Support/Code/User/settings.json にこれを追記した気がする

settings.json
"files.associations": {
        "*.html": "html"
    }

実は初記事です。こんなゴミみたいな記事でごめん

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?