VSCode一键删除所有注释,仨健格式化全部代码
一, 删除注释或空行
- 打开VSCode的替换页面,快捷键为:
Ctl + H
- 鼠标左击使能正则表达式选项,快捷键为:
Alt + R
- 瞄准全部注释的正则表达式为:
/*[\s\S]*/|//.
4. 替换的内容什么都不写, 鼠标左击替换全部, 快捷键为:
Ctl + Alt + Enter
- 如果想删除全部空行,瞄准全部空行的正则表达式为:
^\s*(?=\r?$)\n
同样用空来替换全部即可
二,使用插件 Remove comments
Once installed, remove comments in your code by opening the command palette (Ctrl+Shift+P),
entering “Remove all comments” and pressing enter.
comments**" and pressing enter.