Home >Development Tools >VSCode >vscode jump to definition failed
The problem is as follows:
Today I used roboware studio to open the ros project and found that I could not jump to the definition, and roboware studio was built on the basis of VS Code.
The solution is as follows:
Add in the settings.json file:
"python.jediEnabled": false
(Recommended tutorial: vscode tutorial)
The current roboware studio configuration modification is as follows:
{ “window.zoomLevel”: 1, “editor.fontSize”: 15, “files.associations”: { “*.json”: “cpp” }, “python.jediEnabled”: false }
If you open C/C code, the definition jump and code prompts also need to rely on the C/C plug-in. Just try to install the plug-in.
For more programming related content, please pay attention to the Programming Introduction column on the php Chinese website!
The above is the detailed content of vscode jump to definition failed. For more information, please follow other related articles on the PHP Chinese website!