英文:
How to have VS Code automatically do a regex replacement on a brace completion?
问题
VS Code在输入大括号{
时会自动完成括号的补全。
使用VS Code,可以手动执行正则替换操作,将[\s\n]*([{}])
替换为$1
,以去除每个大括号前的空白。
如何将括号自动补全操作与自动执行正则替换连接起来?
英文:
VS Code will do brace completion when a brace is entered, {
.
With VS Code one can manually do a regex replacement of [\s\n]*([{}])
with $1
with the intent of removing the whitespace before each brace.
How can the brace completion action be connected to automatically do the regex replacement?
答案1
得分: 0
使用Astyle VSCode扩展,而不是这个变通方法,如在C++ VSCode中格式化花括号在前一行结束所示。
英文:
Instead of this workaround, use the Astyle VSCode extension as shown in Format Curly Braces on End Previous Line in C++ VSCode
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论