Skip to content

Commit 8b89899

Browse files
committed
fixed package.json to this his should be python.command.python.execSelectionInTerminal.shortTitle
2 parents 2555161 + 9656005 commit 8b89899

3 files changed

Lines changed: 14 additions & 0 deletions

File tree

src/client/activation/jedi/analysisOptions.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ export class JediLanguageServerAnalysisOptions extends LanguageServerAnalysisOpt
8585
maxSymbols: 0,
8686
},
8787
},
88+
semantic_tokens: {
89+
enable: true,
90+
},
8891
};
8992
}
9093
}

src/client/telemetry/pylance.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,16 @@
457457
"lsversion" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }
458458
}
459459
*/
460+
/* __GDPR__
461+
"language_server/mcp_tool" : {
462+
"kind" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
463+
"duration" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
464+
"cancelled" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
465+
"cancellation_reason" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
466+
"lsversion" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
467+
"failed" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }
468+
}
469+
*/
460470
/**
461471
* Telemetry event sent when LSP server crashes
462472
*/

src/test/activation/jedi/jediAnalysisOptions.unit.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ suite('Jedi LSP - analysis Options', () => {
7474
expect(result.initializationOptions.hover.disable.keyword.all).to.deep.equal(true);
7575
expect(result.initializationOptions.workspace.extraPaths).to.deep.equal([]);
7676
expect(result.initializationOptions.workspace.symbols.maxSymbols).to.deep.equal(0);
77+
expect(result.initializationOptions.semantic_tokens.enable).to.deep.equal(true);
7778
});
7879

7980
test('With interpreter path', async () => {

0 commit comments

Comments
 (0)