Visual Studio Code Intellisense is very slow - Is there anything I can do?

前端 未结 7 1599
逝去的感伤
逝去的感伤 2021-01-30 19:28

Edit: Pylance seems to be much better at this and has so far resolved all problems with the previous Python language server from Microsoft.

I\'m using VS Code an

7条回答
  •  不思量自难忘°
    2021-01-30 20:06

    The problem might be with wrong setting configuration.
    You might want to make sure these setting are on:

    Controls if suggestions should automatically show up while typing

    "editor.quickSuggestions": {
      "other": true,
      "comments": false,
      "strings": false
    },
    

    Controls the delay in ms after which quick suggestions will show up

    "editor.quickSuggestionsDelay": 10,
    

提交回复
热议问题