mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-21 09:45:37 -05:00
Changes Show Commit History to Show File History
Changes Show Previous Commit History to Show Previous File History
This commit is contained in:
@@ -61,14 +61,14 @@ export class CommitQuickPick {
|
||||
if (options.showFileHistory) {
|
||||
if (workingFileName) {
|
||||
items.push(new CommandQuickPickItem({
|
||||
label: `$(versions) Show Commit History`,
|
||||
label: `$(history) Show File History`,
|
||||
description: undefined, //`\u00a0 \u2014 \u00a0\u00a0 ${path.basename(commit.fileName)}`,
|
||||
detail: `Shows the commit history of the file, starting at the most recent commit`
|
||||
}, Commands.ShowQuickFileHistory, [commit.uri, undefined, undefined, currentCommand]));
|
||||
}
|
||||
|
||||
items.push(new CommandQuickPickItem({
|
||||
label: `$(versions) Show Previous Commit History`,
|
||||
label: `$(history) Show Previous File History`,
|
||||
description: undefined, //`\u00a0 \u2014 \u00a0\u00a0 ${path.basename(commit.fileName)}`,
|
||||
detail: `Shows the previous commit history of the file, starting at $(git-commit) ${commit.sha}`
|
||||
}, Commands.ShowQuickFileHistory, [new GitUri(commit.uri, commit), undefined, undefined, currentCommand]));
|
||||
|
||||
Reference in New Issue
Block a user