File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 1163
1163
"default" : " ${workspaceFolder}/.env" ,
1164
1164
"scope" : " resource"
1165
1165
},
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
- },
1172
1166
"python.jediPath" : {
1173
1167
"type" : " string" ,
1174
1168
"default" : " " ,
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ export class PythonSettings extends EventEmitter implements IPythonSettings {
115
115
this . venvPath = systemVariables . resolveAny ( pythonSettings . get < string > ( 'venvPath' ) ) ! ;
116
116
this . venvFolders = systemVariables . resolveAny ( pythonSettings . get < string [ ] > ( 'venvFolders' ) ) ! ;
117
117
118
- this . jediEnabled = systemVariables . resolveAny ( pythonSettings . get < boolean > ( 'jediEnabled' ) ) ! ;
118
+ this . jediEnabled = systemVariables . resolveAny ( pythonSettings . get < boolean > ( 'jediEnabled' , true ) ) ! ;
119
119
if ( this . jediEnabled ) {
120
120
// tslint:disable-next-line:no-backbone-get-set-outside-model no-non-null-assertion
121
121
this . jediPath = systemVariables . resolveAny ( pythonSettings . get < string > ( 'jediPath' ) ) ! ;
You can’t perform that action at this time.
0 commit comments