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.文章来源:https://www.toymoban.com/news/detail-754674.html
《AUTOSAR谱系分解(ETAS工具链)》之总目录文章来源地址https://www.toymoban.com/news/detail-754674.html
到了这里,关于VSCode一键删除所有注释的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!