We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b1d934 commit a394e8bCopy full SHA for a394e8b
src/WorkspaceContext.ts
@@ -264,9 +264,14 @@ export class WorkspaceContext implements vscode.Disposable {
264
}
265
266
if (this.currentFolder) {
267
+ console.log("Swift version: " + this.currentFolder.swiftVersion.toString());
268
const languageClient = this.languageClientManager.get(this.currentFolder);
269
await languageClient.useLanguageClient(async client => {
270
const experimentalCaps = client.initializeResult?.capabilities.experimental;
271
+ console.log(
272
+ "Experimental LSP Capabilities: " +
273
+ JSON.stringify(experimentalCaps, undefined, 4)
274
+ );
275
if (!experimentalCaps) {
276
contextKeys.supportsReindexing = false;
277
contextKeys.supportsDocumentationLivePreview = false;
0 commit comments