没有ctrl + space的Qt Creator自动完成功能不起作用

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

我正在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.
}

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

c++ qt-creator
1个回答
2
投票

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

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