Home > Development Tools > VSCode > body text

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

王林
Release: 2020-02-10 17:17:57
Original
14402 people have browsed it

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

The current configuration is modified as follows:

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

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!

Related labels:
source:php.cn
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!