如何在 VS Code 中将切换注释从 @REM 更改为 REM

问题描述 投票:0回答:2

在 VS 代码中,当我使用 Ctrl+/ 切换注释时,它会用

@REM
注释该行。我如何更改它以仅用
REM
注释该行?

batch-file visual-studio-code
2个回答
3
投票

看看我刚刚发布的这个扩展,自定义语言属性。这里它正在做你想要的

.bat
批处理文件
lineComments

它使得更改一种或多种语言的注释或括号变得非常容易。通过如下设置:

  "custom-language-properties": {

    "bat.comments.lineComment": "REM",
    "python.comments.lineComment": "# ~",
    "javascript.comments.blockComment": ["/*  ","  */"]
 }

3
投票

在 VSCode 安装文件夹的

\resources\app\extensions\bat
文件夹中(如果您不确定它在哪里,请先检查
%localappdata%\Programs\Microsoft VS Code
),有一个名为
language-configuration.json
的文件。在文件的最开头,有一段内容是

{"comments":{"lineComment":"@REM"}

将其更改为

{"comments":{"lineComment":"REM"}

(请注意,如果 VSCode 更新,您将必须再次更改此文件。)

© www.soinside.com 2019 - 2024. All rights reserved.