0


VSCode一键删除所有注释

VSCode一键删除所有注释,仨健格式化全部代码

文章目录

一, 删除注释或空行

  1. 打开VSCode的替换页面,快捷键为:

Ctl + H

  1. 鼠标左击使能正则表达式选项,快捷键为:

Alt + R

  1. 瞄准全部注释的正则表达式为:

/[\s\S]**/|//.
4. 替换的内容什么都不写, 鼠标左击替换全部, 快捷键为:

Ctl + Alt + Enter

  1. 如果想删除全部空行,瞄准全部空行的正则表达式为:

^\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.

《AUTOSAR谱系分解(ETAS工具链)》之总目录

标签: vscode

本文转载自: https://blog.csdn.net/PlutoZuo/article/details/132414230
版权归原作者 PlutoZuo 所有, 如有侵权,请联系我们删除。

“VSCode一键删除所有注释”的评论:

还没有评论