1
3

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 5 years have passed since last update.

外部ファイル化したEmmetのオレオレスニペット(snippets.json)をVSCodeで読み込む

Posted at

SublimeTextやAtom等の異なるエディタ間でスニペットを共有したい場合、~/emmet/配下等に設定ファイル(snippets.jsonだけでなく、preferences.jsonやsyntaxProfiles.jsonも同様)を置いて管理しますが、VSCodeでは今月になってようやく外部ファイルの設定読み込みに対応したみたいです。
https://github.com/Microsoft/vscode/issues/11679

設定方法

(Windowsの設定方法ですが、他の環境も変わらないでしょう)
基本設定>ユーザー設定(もしくはワークスペース設定)を開き、emmet.extensionsPathのキーを追加してフォルダを指定するだけです。
以下の例ではSublimeTextやAtomのプラグインで使われているデフォルト値(~/emmet)を使用しています。

~/emmet%USERPROFILE%/emmetのような書き方はできないため、フルパス記述が必要ということにだけ注意。

ユーザー設定
{
    "emmet.extensionsPath": "C:\\Users\\hizatama\\emmet"
}

これでVSCodeでもオレオレスニペットを使えるようになりました。

Enjoy Coding :)

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?