Skip to content

Commit 208e603

Browse files
authored
Hide Jedi flag (#1443)
Fixes #1439
1 parent 17d18f4 commit 208e603

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

package.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1163,12 +1163,6 @@
11631163
"default": "${workspaceFolder}/.env",
11641164
"scope": "resource"
11651165
},
1166-
"python.jediEnabled": {
1167-
"type": "boolean",
1168-
"default": true,
1169-
"description": "Enables Jedi as IntelliSense engine instead of Microsoft Python Analysis Engine.",
1170-
"scope": "resource"
1171-
},
11721166
"python.jediPath": {
11731167
"type": "string",
11741168
"default": "",

src/client/common/configSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export class PythonSettings extends EventEmitter implements IPythonSettings {
115115
this.venvPath = systemVariables.resolveAny(pythonSettings.get<string>('venvPath'))!;
116116
this.venvFolders = systemVariables.resolveAny(pythonSettings.get<string[]>('venvFolders'))!;
117117

118-
this.jediEnabled = systemVariables.resolveAny(pythonSettings.get<boolean>('jediEnabled'))!;
118+
this.jediEnabled = systemVariables.resolveAny(pythonSettings.get<boolean>('jediEnabled', true))!;
119119
if (this.jediEnabled) {
120120
// tslint:disable-next-line:no-backbone-get-set-outside-model no-non-null-assertion
121121
this.jediPath = systemVariables.resolveAny(pythonSettings.get<string>('jediPath'))!;

0 commit comments

Comments
 (0)