You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Do not call activate the discovery component before registering all the classes (#15379)
* Do not attempt to activate discovery component before registering all the classes
* Add clarification comment
* Code reviews
* Skip windows store and shims paths when using known path locators (#15388)
* Skip windows store and shims paths when using known path locators
* Clean up and comments
* Tests
* Handle cases where envs variables might not be set
* Typo
Co-authored-by: Kim-Adeline Miguel <[email protected]>
Co-authored-by: Kim-Adeline Miguel <[email protected]>
* Change "Pylance not installed" prompt to allow reverting to Jedi (#15420)
* Allow on suggestion refresh by default (#15430)
Co-authored-by: Kartik Raj <[email protected]>
Co-authored-by: Kim-Adeline Miguel <[email protected]>
Co-authored-by: Jake Bailey <[email protected]>
Copy file name to clipboardExpand all lines: package.nls.json
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -49,9 +49,11 @@
49
49
"Pylance.proposePylanceMessage": "Try out a new faster, feature-rich language server for Python by Microsoft, Pylance! Install the extension now.",
50
50
"Pylance.tryItNow": "Try it now",
51
51
"Pylance.remindMeLater": "Remind me later",
52
-
"Pylance.installPylanceMessage": "Pylance extension is not installed. Click Yes to open Pylance installation page.",
53
52
"Pylance.pylanceNotInstalledMessage": "Pylance extension is not installed.",
54
53
"Pylance.pylanceInstalledReloadPromptMessage": "Pylance extension is now installed. Reload window to activate?",
54
+
"Pylance.pylanceRevertToJediPrompt": "The Pylance extension is not installed but the python.languageServer value is set to \"Pylance\". Would you like to install the Pylance extension to use Pylance, or revert back to Jedi?",
Copy file name to clipboardExpand all lines: src/client/common/utils/localize.ts
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -114,10 +114,6 @@ export namespace Pylance {
114
114
exportconsttryItNow=localize('Pylance.tryItNow','Try it now');
115
115
exportconstremindMeLater=localize('Pylance.remindMeLater','Remind me later');
116
116
117
-
exportconstinstallPylanceMessage=localize(
118
-
'Pylance.installPylanceMessage',
119
-
'Pylance extension is not installed. Click Yes to open Pylance installation page.',
120
-
);
121
117
exportconstpylanceNotInstalledMessage=localize(
122
118
'Pylance.pylanceNotInstalledMessage',
123
119
'Pylance extension is not installed.',
@@ -126,6 +122,13 @@ export namespace Pylance {
126
122
'Pylance.pylanceInstalledReloadPromptMessage',
127
123
'Pylance extension is now installed. Reload window to activate?',
128
124
);
125
+
126
+
exportconstpylanceRevertToJediPrompt=localize(
127
+
'Pylance.pylanceRevertToJediPrompt',
128
+
'The Pylance extension is not installed but the python.languageServer value is set to "Pylance". Would you like to install the Pylance extension to use Pylance, or revert back to Jedi?',
0 commit comments