如果没有ctrl + space,Qt Creator自动完成功能无效

时间:2014-01-29 19:32:35

标签: c++ qt-creator

我在Debian 7上使用Qt Creator3.0编写c ++代码。当键入变量名称,函数名称时,自动完成列表不会自动弹出,除非我按下ctrl + space。

例如:

void main()
{
    int variable1 = 0;
    //when I type "v" here, it does not pop out auto completion list automatically.
}

1 个答案:

答案 0 :(得分:1)

我遇到同样的问题,似乎QtCreator配置为在一个字符后不自动完成,它至少需要3个字符(http://qt-project.org/forums/viewthread/11522)。这个选择的“解释”是它要求太多的资源在一个角色后自动完成......

相关问题