如何-在Visual Studio代码中-使用标签包装选择(最好是div)

问题描述 投票:0回答:1

是否有一种方法可以在Visual Studio Code中选择几行代码,并以某种方式自动用div(或其他标签)将它们包装起来?

谢谢您的帮助

Mitsos

html visual-studio-code tags
1个回答
0
投票

您可以使用Emmet: Wrap Individual lines with abbreviation

如果您有用于包装的固定标签,则可以在keybindings.json中添加键盘快捷键>

  {
    "key": "shift+alt+d",
    "when": "editorTextFocus && editorLangId == html",
    "command": "editor.emmet.action.wrapIndividualLinesWithAbbreviation",
    "args": { "abbreviation": "div" }
  }
© www.soinside.com 2019 - 2024. All rights reserved.