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 2face42 commit f9ae934Copy full SHA for f9ae934
src/commands/patches.ts
@@ -164,7 +164,7 @@ export function registerPatchesCommands(
164
),
165
vscode.commands.registerCommand(
166
`${commandPrefix}.showPatchedFileDiff`,
167
- (file: vscode.Uri, patchedFilename: string) => {
+ (file: vscode.Uri, _patchedFilename: string) => {
168
const { blobIdA, blobIdB, patch } = querystringParse(file.query);
169
170
if (!blobIdA || !blobIdB || !patch) {
@@ -203,7 +203,7 @@ export function registerPatchesCommands(
203
"vscode.diff",
204
originalFile,
205
patchedFile,
206
- `${path.basename(patch)} - ${patchedFilename}`,
+ `${path.basename(patch)} - Diff`,
207
);
208
}
209
},
0 commit comments