We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c72f862 commit 93994e1Copy full SHA for 93994e1
VSCode/vscode-extension/src/extension.ts
@@ -580,7 +580,9 @@ async function startLanguageServer(context: vscode.ExtensionContext): Promise<vo
580
if (e.affectsConfiguration('strideShaderTools.shaderPaths')) {
581
const updatedConfig = vscode.workspace.getConfiguration('strideShaderTools');
582
const paths = updatedConfig.get<string[]>('shaderPaths') ?? [];
583
- client.sendNotification('stride/updateShaderPaths', { additionalShaderPaths: paths });
+ client.sendNotification('stride/updateShaderPaths', {
584
+ additionalShaderPaths: paths,
585
+ });
586
}
587
})
588
);
0 commit comments