Heejae Chang
Heejae Chang
if you are using remote and multi root workspace, make sure you are putting settings in right place and share the right setting files. you should have settings section similar...
since it looks like `pylance` is crashing even before starting server, you probably can't use https://github.com/microsoft/pylance-release/wiki/Collecting-data-for-an-investigation.#collecting-trace-logs-using-commands but if you somehow could manage to make server to start you could use...
I can not see any issue on pylance log, it looks like pylance extension suddenly restarted. can you look other logs in the output window and see whether it contains...
how about `remote - SSH` log? does it contain anything interesting there?
could it be something related to something like this? https://stackoverflow.com/questions/64172004/vscode-ssh-extension-keeps-disconnecting-after-moving-to-a-new-location
are you saying you copied things correctly but something interfered and messed up indentation? or you copied things incorrectly, so format was messed up? but you want us to fix...
so, you are saying the extra whitespace before `"""` below `def home` is added by something (pylance or something else) even if user didn't put that whitespace when they make...
another data that could be helpful is providing this info (https://github.com/microsoft/pylance-release/wiki/Collecting-data-for-an-investigation.#collecting-cpuprofiles) basically do 1. start profiling 2. save the file (assuming that is the repro step as described in the...
@luabud we might want to add `low resource mode` where we turn off most of features except only core ones. basically, only enables these features and turn off everything else....
```json // No user files "python.analysis.exclude": ["**"], // Expensvie to turn on "python.analysis.indexing": false, "python.analysis.fixAll": [], "python.analysis.diagnosticMode": "openFilesOnly", "python.analysis.enablePytestSupport": false, "python.analysis.inlayHints.callArgumentNames": "off", "python.analysis.inlayHints.functionReturnTypes": false, "python.analysis.inlayHints.pytestParameters": false, "python.analysis.inlayHints.variableTypes": false, "python.analysis.supportRestructuredText": false,...