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 31ee135 commit 4e79d66Copy full SHA for 4e79d66
plugins/vscode/src/diff-manager.ts
@@ -90,7 +90,11 @@ export class DiffManager {
90
/**
91
* Create a virtual URI for diff content (won't trigger linters)
92
*/
93
- private createVirtualUri(id: string, type: 'original' | 'modified' | 'new', fileName: string): vscode.Uri {
+ private createVirtualUri(
94
+ id: string,
95
+ type: 'original' | 'modified' | 'new',
96
+ fileName: string,
97
+ ): vscode.Uri {
98
// Include the file extension in the path for syntax highlighting
99
// but use our custom scheme so linters don't run
100
return vscode.Uri.parse(`${DIFF_SCHEME}:/${id}/${type}/${fileName}`);
0 commit comments