Home > Software design >  VS Code Intellisense - unrelated methods
VS Code Intellisense - unrelated methods

Time:03-01

I moved from old Windows laptop to a new one. I installed VS Code and transferred files and folders from .vscode in my user's directory to continue using the same settings and plugins. Now in the VS code IntelliSense puts lots of unrelated methods on top of its list .add, .append, .capitalize, etc.

Example

Example

This happens with all objects I'm working with, whether it's a built-in or a user defined class. My old laptop doesn't have this problem. My language server is Pylance, I have IntelliSense enabled. How can I fix that?

CodePudding user response:

Because you have enabled python snippets extension. You can disable or uninstall it, or you can add this in the settings.json file:

"editor.snippetSuggestions": "none",
  • Related