mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-20 09:45:36 -05:00
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user