在VSCode中,如何显示以“//!”开头的c++注释不同颜色?

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

在 CLion 中,注释以“//!”开头是绿色的,而以“//”开头的注释是灰色的

在 vscode 中,两条注释都是绿色的

在vscode中如何使用不同的颜色来区分这两种注释?

PS:我无法附上 clion 和 vscode 的屏幕截图,因为我没有足够的声誉。这是示例代码

#include <iostream>
using namespace std;
int main(){
  // in clion, this line is grey; in vscode it is green
  //! in clion and vscode, this line is green
  cout << "Hello world!" << endl;
  return 0;
}

我用谷歌搜索关键字

vscode c++ comment "//!"
vscode different comment in different colors
,但没有找到有用的信息

visual-studio-code comments
1个回答
0
投票

我找到了一个名为 Better Comments 的插件,它可以满足我的需要。

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