快速标记(https://github.com/redmunds/brackets-quick-markup)是 Brackets IDE 可用于HTML开发的扩展。可以使用快捷键 Ctrl + Alt + M 激活扩展。启用后,我们可以使用自定义快捷方式插入自定义HTML标记,而不用键入它们。例如,要在单词周围插入<b></b>
标签,我们只需要选择单词并按 Ctrl + B 即可。快捷方式及其相应的标签可以自定义。
我正在Visual Studio Code中寻找类似的扩展名或功能。我尝试搜索,但到目前为止找不到任何内容。
答案 0 :(得分:0)
keybindings.json
{
"key": "ctrl+b",
"command": "editor.emmet.action.wrapWithAbbreviation",
"when": "editorHasSelection",
"args": {
"abbreviation": "b"
}
},
{
"key": "ctrl+shift+b",
"command": "editor.emmet.action.wrapWithAbbreviation",
"when": "editorHasSelection",
"args": {
"abbreviation": "pre>code"
}
},
您也可以不带args
来调用它,而每次都只需键入标签即可。
或仅输入任何内容:
{
"key": "ctrl+b",
"command": "editor.action.insertSnippet",
"args": {
"snippet": "<br />"
}
}