Home > Development Tools > VSCode > vscode jump to definition failed

vscode jump to definition failed

王林
Release: 2020-02-25 16:08:34
Original
5451 people have browsed it

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
Copy after login

(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
}
Copy after login

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!

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template