forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New language server option #10079
Copy link
Copy link
Closed
Labels
area-intellisenseLSP-related functionality: auto-complete, docstrings, navigation, refactoring, etc.LSP-related functionality: auto-complete, docstrings, navigation, refactoring, etc.bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugverifiedVerification succeededVerification succeeded
Milestone
Metadata
Metadata
Assignees
Labels
area-intellisenseLSP-related functionality: auto-complete, docstrings, navigation, refactoring, etc.LSP-related functionality: auto-complete, docstrings, navigation, refactoring, etc.bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugverifiedVerification succeededVerification succeeded
Type
Fields
Give feedbackNo fields configured for issues without a type.
Environment data
"python.jediEnabled"set to; more info How to update the language server to the latest stable version #3977): LanguageServerpython.languageServersetting: 0.5.31Expected behaviour
Setting the new
python.languageServertoMicrosoftand removingpython.jediEnabledshould use the corresponding language server.Actual behaviour
The default value of
python.jediEnabledis true so even thoughpython.languageServeris set toMicrosoftit still uses the jedi one. To ensure the microsoft one is being used, I need to still keeppython.jediEnabledaround which I assume is no longer intended to be needed.Steps to reproduce:
python.languageServer: 'Microsoft` to settings.python.jediEnabled: False from settings.