【发布时间】:2015-08-17 19:43:36
【问题描述】:
Qt Creator 是否像 Intellij IDEA 一样提供智能代码完成功能?例如:
void main() {
QString simpleVariableName = "First string";
QString anotherVariableName = "Second string";
// If I type "variable" and press Ctrl + Space I would like to get
// all matching variables(simple and another) in popup list. In
// IDEA it works, but Qt Creator show nothing.
}
我听说过 Clang Code Model 插件,它已经安装在我的 3.4.0 版本中。但这没有任何意义,我仍然有默认行为。
有什么方法可以实现真正智能的代码补全?
【问题讨论】:
标签: c++ qt-creator code-completion