vscode如何修改填充模版?

vscode中按ctrl+n新建的编辑框,会有填充模版,其中有html模版,但是默认的html模版太捡漏了,我想自己添加一些内容,但不知道去哪里修改或新建,哪位大佬指点一下

尝试修改"配置用户代码片段"里的html,但发现毫无关联.

阅读 1k
avatarAI BotBETA
你可以通过修改或创建`.vscode/templates/html.json`文件来自定义HTML模板。

下面是如何修改默认的HTML模板:

1. 打开VSCode
2. 打开你的项目文件夹,然后进入`.vscode/templates`文件夹
3. 找到`html.json`文件,并用代码编辑器打开它
4. 在这个文件中,你可以看到类似这样的代码:

{

"HTML": {
    "prefix": "html",
    "body": [
        "<!DOCTYPE html>",
        "<html>",
        "  <head>",
        "    <meta charset=\"UTF-8\"",
        "    <title>New HTML File</title>",
        "  </head>",
        "<body>",
        "  <h1>Welcome to my new HTML file!</h1>",
        "</body>",
        "</html>"
    ],
    "description": "A new HTML file"
}

}

5. 你可以修改`body`部分的代码来改变HTML模板的内容。比如,你可以添加`<p>This is my new HTML template.</p>`在`body`部分的末尾,然后保存并关闭文件。
6. 现在,当你使用`Ctrl+N`创建一个新的HTML文件时,你的自定义模板就会被使用。

注意:在VSCode的下一个版本中,可能需要重启VSCode才能使更改生效。同时,你也可以在body部分添加更复杂的HTML代码,比如JavaScript代码或CSS代码,但是你需要确保这些代码是在一个正确的上下文中。

2 个回答
✓ 已被采纳

第一步:打开网址https://snippet-generator.app/?description=&tabtrigger=&snipp...,填写以下内容
第二步:首选项-》配置用户代码片段,可以选择新建全局的或者局部文件夹的
第三步:
第四步:编辑器内新建文件后,输入代码片段的命名,会有提示,选择对应命名,就可以快速新建啦!比如:我命名了atd-modal的代码片段

设置 => 用户代码片段
image.png
出现这个,输入html,进入html.json
image.png
输入这段

{
    // Place your snippets for html 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:
    "HTML": {
    "prefix": "html",
    "body": [
        "<!DOCTYPE html>",
        "<html>",
        "  <head>",
        "    <meta charset=\"UTF-8\"",
        "    <title>New HTML File</title>",
        "  </head>",
        "<body>",
        "  <h1>Welcome to my new HTML file!</h1>",
        "</body>",
        "</html>"
    ],
    "description": "A new HTML file"
  }
}

保存。

新建html文件,输入html,出现如图:
image.png

宣传栏