Home>Article>Development Tools> What should I do if vscode cannot jump to the definition?

What should I do if vscode cannot jump to the definition?

王林
王林 Original
2020-02-10 17:17:57 14525browse

What should I do if vscode cannot jump to the definition?

The problem is as follows:

Use roboware studio to open the ros project, and find that it cannot jump to the definition, and roboware studio is built on the basis of VS Code.

The solution is as follows:

Add the following code to the settings.json file:

"python.jediEnabled": false

The current configuration is modified as follows:

{ “window.zoomLevel”: 1, “editor.fontSize”: 15, “files.associations”: { “*.json”: “cpp” }, “python.jediEnabled”: false }

If it is opened If it is C/C code, defining jumps and code prompts also need to rely on the C/C plug-in, just install the plug-in.

What should I do if vscode cannot jump to the definition?

Related tutorial sharing:vscode tutorial

The above is the detailed content of What should I do if vscode cannot jump to the definition?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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