我使用 Fedora 22 和dnf install -y anjuta
.
我创建了一个新的 C++ 项目并编写了以下代码:
int hello(int a, int b);
int main()
{
hello(
// After I have typed '(', the calltips window popped up,
// but the background color and text are too dark to tell.
// The calltips window cannot be captured through screenshot.
return 0;
}
int hello(int a, int b)
{
return a + b;
}
如何在 Anjuta 中更改 calltips 的颜色?