Adds helpful placeholder text to repo quickpick

Moves show all quickpick item to be first
This commit is contained in:
Eric Amodio
2017-02-13 13:41:39 -05:00
parent 5f147f6262
commit 48b33d47ca
2 changed files with 5 additions and 4 deletions

View File

@@ -48,7 +48,7 @@ export class ShowAllCommitsQuickPickItem implements QuickPickItem {
detail: string;
constructor(maxItems: number) {
this.label = `Show All Commits`;
this.label = `\u21BB Show All Commits`;
this.description = `\u2014 Currently only showing the first ${maxItems} commits`;
this.detail = `This may take a while`;
}