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 5081a5a commit fda78bfCopy full SHA for fda78bf
src/extension.ts
@@ -21,7 +21,9 @@ export function activate(context: ExtensionContext) {
21
commands.registerCommand("syntaxTree.restart", restartLanguageServer),
22
commands.registerCommand("syntaxTree.visualize", () => visualizer?.visualize()),
23
commands.registerCommand("syntaxTree.showOutputChannel", () => outputChannel.show()),
24
- outputChannel
+ workspace.onDidChangeConfiguration(event =>
25
+ event.affectsConfiguration("syntaxTree") &&
26
+ restartLanguageServer())
27
);
28
29
return startLanguageServer();
0 commit comments