Select matching element/rename HTML tag in Visual Studio Code

后端 未结 8 651
长情又很酷
长情又很酷 2020-12-01 03:32

Let\'s say I\'ve got the following code

    

How can I

8条回答
  •  有刺的猬
    2020-12-01 03:55

    Quick and Simple Select tool works fine too but though it is not perfect. it has over 40k downloads https://marketplace.visualstudio.com/items?itemName=dbankier.vscode-quick-select

    it allows you to select tools

    • Ctrl + K ' select everything between single quotes
    • Ctrl + K " select everything between double quotes
    • Ctrl + K ` select everything between backticks
    • Ctrl + K ( select everything inside the parenthesis
    • Ctrl + K ) select everything inside parenthesis and include them
    • Ctrl + K [ or ] select everything between square brackets and include them
    • Ctrl + K { or } select everything between curly braces and include them
    • Ctrl + K < or > select everything between angle brackets and include

提交回复
热议问题