LoginSignup
17
11

More than 5 years have passed since last update.

VS Codeで標準の拡張子以外に言語のサポート機能を有効化する方法

Last updated at Posted at 2016-06-03

Question

標準の拡張子以外に言語サポート機能を効かせるにはどうしたらいいのか。

例で言うと、riot.jsの.tagファイルの編集時にHTMLのサポート機能を有効化したい場合はどうしたらいいのか。

Answer

ユーザー設定(settings.json)に以下を加える。

{
    "files.associations": {
        "*.tag":"html"
    }
}

以上。

参考

17
11
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
17
11