前两天发现安装 C/C++ 插件失败,提示版本不兼容。似乎微软不让 Cursor 用了。我试了 Anysphere 的 C/C++,但是效果差一大截。
C/C++ 插件重度使用者,有什么好方案吗?
![]() |
1
weiweiwitch 55 天前 via Android
再另一个 ide 看代码?我 kotlin 加 gradle 的工程也是死活加载不了。现在就只用 cursor 的 agent 帮我改代码,然后在 idea 里面看代码。
|
![]() |
2
nziu 55 天前
clangd+CodeLLDB
|
![]() |
3
thfurior 55 天前
我在 vs code 上用插件看代码调试,cursor 上只要求能编译过就行,互相切
|
4
xfn 55 天前
clangd 。就算在 vscode 里我也不用微软的 c++插件,大型项目奇慢
|
![]() |
5
lisongeee 55 天前
似乎微软不让 Cursor 用了 ❎
Cursor 白嫖并违反微软的许可证 ✔️ |
6
zhoukevin233 50 天前
用 clangd+MSVC+ninja
|
![]() |
7
RuifuSu 43 天前 ![]() 正好研究过这个问题,按下面这个步骤操作即可
1. 如果 Cursor 已经安装新版本 C++插件,打开 Cursor 卸载 C++插件。 2. 打开 C++插件 1.23.5 Release 页面。https://github.com/microsoft/vscode-cpptools/releases/tag/v1.23.5 3. 下载对应版本。[Windows 64 下载]( https://github.com/microsoft/vscode-cpptools/releases/download/v1.23.5/cpptools-windows-x64.vsix ) 4. Open Cursor and press Ctrl + Shift + P to open the command palette. 5. Search for "Install from VSIX" and select it. 6. Browse to the downloaded VSIX file and install it. 7. Wait for the installation to complete (may take about a minute). 8. Enjoy!! 参考链接: https://github.com/cursor/cursor/issues/2976#issuecomment-2788954138 |