vscode设置console.log快捷键

设置:打开vscode,文件 → 首选项 → 用户片段 → 在搜索框中搜索 JavaScript → 选择 JavaScript.json

{
  // Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and
  // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
  // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
  // same ids are connected.
  // Example:
  "Print to console": {
    "prefix": "c",
    "body": [
      "console.log('$1 :>> ', $1);",
      "$2"
    ],
    "description": "Log output to console"
  }
}

 

使用:复制要打印的变量名,点击要打印的地方 → 按c → 回车 → 粘贴

 

posted @ 2021-12-11 15:40  starlog  阅读(283)  评论(0编辑  收藏  举报