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 ee0728f commit 0d3259dCopy full SHA for 0d3259d
src/extensions.ts
@@ -92,7 +92,7 @@ export class FileSystemFeature implements StaticFeature {
92
}))
93
disposableCollection.push(getServices().workspace.registerSaveDocumentHandler({
94
async saveTextContent (document, reason) {
95
- if (languageClientManager.isModelManaged(document)) {
+ if (languageClientManager.isModelManaged(document) && document.uri.scheme === 'file') {
96
await infrastructure.saveFileContent?.(document, reason, languageClientManager)
97
}
98
0 commit comments