如何在Visual Stuidio代码操作系统Linux Mint 18中使用Qt?
市场不存在Qt的扩展。 也许有人知道更多!
UPD。 我的意思是按类型Qt AddIn
答案 0 :(得分:13)
您应该有机会加入此扩展程序:https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools
有了这个,您可以配置包含路径以获得更好的IntelliSense结果。
配置includePath
配置QtCore模块的一种方法。
C/Cpp: Edit Configurations
c_cpp_properties.json
configurations
数组中,您应该编辑 Linux 部分includePath
设置中添加路径,例如:/usr/include/x86_64-linux-gnu/qt5/QtCore
有关详细信息,请参阅:https://github.com/Microsoft/vscode-cpptools/blob/master/Documentation/Getting%20started.md
智能感知引擎
我们建议使用“默认”引擎以获得最佳的智能感知体验。但是,可以通过编辑user or workspace settings来明确选择IntelliSense引擎。您应修改的设置为C_Cpp.intelliSenseEngine
Default
- Visual Studio的IntelliSense引擎,它是提供语义感知IntelliSense功能的默认引擎Tag Parser
- 提供快速但“模糊”结果的“模糊”IntelliSense引擎,用于在默认引擎为答案 1 :(得分:0)
自上次回答以来,将Qt标头添加到cpptools
扩展名的方法已更改。现在,这样做的选项包括:
通过单击IntelliSense错误上方的灯泡并选择Add to "includePaths"...
通过C/Cpp: Edit Configurations (UI)
通过C/Cpp: Edit Configurations (JSON)
python shell中的更多信息