是否有一种方法可以在Visual Studio Code中选择几行代码,并以某种方式自动用div(或其他标签)将它们包装起来?
谢谢您的帮助
Mitsos
您可以使用Emmet: Wrap Individual lines with abbreviation
。
如果您有用于包装的固定标签,则可以在keybindings.json
中添加键盘快捷键>
{
"key": "shift+alt+d",
"when": "editorTextFocus && editorLangId == html",
"command": "editor.emmet.action.wrapIndividualLinesWithAbbreviation",
"args": { "abbreviation": "div" }
}