Adds copy sha to clipboard to commit quickpick

Adds show changed files to commit quickpick
Changes ordering of commit quickpick list
This commit is contained in:
Eric Amodio
2017-02-16 17:10:19 -05:00
parent af5b8b7e09
commit cd581f5c56
2 changed files with 33 additions and 19 deletions

View File

@@ -27,7 +27,7 @@ export class CommitQuickPickItem implements QuickPickItem {
constructor(public commit: GitCommit, descriptionSuffix: string = '') {
this.label = `${commit.author}, ${moment(commit.date).fromNow()}`;
this.description = `$(git-commit) ${commit.sha}${descriptionSuffix}`;
this.description = `\u00a0 \u2014 \u00a0\u00a0 $(git-commit) ${commit.sha}${descriptionSuffix}`;
this.detail = commit.message;
}
}