LoginSignup
0
0

More than 3 years have passed since last update.

[VSCode] javascriptのSnippet作成

Posted at

Snippet作成

1.[歯車マーク]-[User Snippets]-[javascript]を選択

スクリーンショット 2020-12-04 19.39.26.png

スクリーンショット 2020-12-04 19.44.04.png

2.Snippet登録

{
    "Print to console": {
        "prefix": "test",
        "body": [
            "console.log('${1|おはよう,こんにちは,こんばんは|}');",
            "$0"
        ],
        "description": "Log output to console"
    }
}

Snippet利用

1.prefixに設定した文字を入力

スクリーンショット 2020-12-04 19.48.30.png

スクリーンショット 2020-12-04 19.48.43.png

スクリーンショット 2020-12-04 19.48.58.png

Snippet削除

Macの場合

cd ~/Library/Application\ Support/Code/User/snippets/
rm javascript.json
0
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
0
0