How to use the vscode-languageclient.DidChangeConfigurationNotification.type function in vscode-languageclient

To help you get started, we’ve selected a few vscode-languageclient examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github microsoft / vscode-extension-samples / lsp-multi-root-sample / client / src / extension.ts View on Github external
configurationListener = workspace.onDidChangeConfiguration(() => {
			client.sendNotification(DidChangeConfigurationNotification.type, { settings: null });
		});
	}
github ikappas / vscode-phpcs / phpcs / src / configuration.ts View on Github external
this.disposables.push(workspace.onDidChangeConfiguration(() => {
			this.folderSettings.clear();
			this.globalSettings = null;
			this.client.sendNotification(DidChangeConfigurationNotification.type, { settings: null });
		}));
	}
github pgourlain / vscode_erlang / lib / lsp / lspclientextension.ts View on Github external
configurationListener = Workspace.onDidChangeConfiguration(() => {
            lspcodelens.configurationChanged();
            client.sendNotification(DidChangeConfigurationNotification.type, { settings: null });
        });
        fileSystemWatcher = workspace.createFileSystemWatcher('**/*.erl');
github christianvoigt / argdown / packages / argdown-vscode / src / LanguageServerConfiguration.ts View on Github external
this.configurationListener = workspace.onDidChangeConfiguration(() => {
      client.sendNotification(DidChangeConfigurationNotification.type, {
        settings: null
      });
    });
  }
github ReactEdCoders / ReactEd / client / src / extension.ts View on Github external
configurationListener = workspace.onDidChangeConfiguration(() => {
			client.sendNotification(DidChangeConfigurationNotification.type, { settings: null });
		});
github redhat-developer / vscode-xml / src / extension.ts View on Github external
didChangeConfiguration: () => {
            languageClient.sendNotification(DidChangeConfigurationNotification.type, { settings: getXMLSettings(requirements.java_home) });
            onConfigurationChange();
          }
        }