vscode快速删除注释,⌥⌘r。
js单行注释。

//.*

js多行注释。

/\*(.|\r\n|\n)*?\*/

单行和多行注释。

/\*(.|\r\n|\n)*?\*/|\/\/.*

html注释。

<!--([\s\S|\r]*?)-->