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.
2 parents 3ba84b7 + 19b126c commit 753445cCopy full SHA for 753445c
src/providers/FileSystemProvider/FileSystemProvider.ts
@@ -192,7 +192,7 @@ export class FileSystemProvider implements vscode.FileSystemProvider {
192
// Instead we simply return as though we wrote it successfully.
193
// The actual writing is done by our workspace.onDidSaveTextDocument handler.
194
// But first check cases for which we should fail the write and leave the document dirty if changed.
195
- if (fileName.split(".").pop().toLowerCase() === "cls") {
+ if (!csp && fileName.split(".").pop().toLowerCase() === "cls") {
196
// Check if the class is deployed
197
api.actionIndex([fileName]).then((result) => {
198
if (result.result.content[0].content.depl) {
0 commit comments