在 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
,但没有找到有用的信息
我找到了一个名为 Better Comments 的插件,它可以满足我的需要。