From 73c58bc9238f6d67003557a7fcaf1f053d8125c3 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 27 Feb 2017 00:59:30 -0500 Subject: [PATCH] Changes Show Commit History to Show File History Changes Show Previous Commit History to Show Previous File History --- src/commands/quickPicks.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/quickPicks.ts b/src/commands/quickPicks.ts index 8b12204..a6badc7 100644 --- a/src/commands/quickPicks.ts +++ b/src/commands/quickPicks.ts @@ -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]));