Skip to content

Commit

Permalink
Fix: VSCode configuration is incomplete on the document (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
ice3 authored Jan 10, 2025
1 parent 81680c8 commit d934009
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/setup_visual_studio_code.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,17 @@ Add the path for the auto completion from Visual Studio.
1. Click *File* > *Preferences* > *Settings*.
2. Search `Auto Complete` under the **Workspace** tab
3. Find **Python > Auto Complete: Extra Paths** click on 'Edit in settings.json'
4. On `settings.json` page, add the generated modules path to `python.autoComplete.extraPaths`
4. On `settings.json` page, add the generated modules path for
* `python.autoComplete.extraPaths`
* `python.analysis.extraPaths`

* Example of settings.json

```json
{
"python.analysis.extraPaths": [
"<path-to-generated-modules>"
],
"python.autoComplete.extraPaths": [
"<path-to-generated-modules>"
]
Expand Down

0 comments on commit d934009

Please sign in to comment.