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

前端 未结 7 1615
逝去的感伤
逝去的感伤 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:03

    I had the same problem with Python on VS Code. In my case, disabling Jedi for IntelliSence made things faster.

    Just set "python.jediEnabled": false in the options.

    As memory is not a problem for me, I also enabled code analysis to keep parser trees in memory: "python.analysis.memory.keepLibraryAst": true

提交回复
热议问题