Updating naming scheme to match other commands

This commit is contained in:
Drew Cross
2019-07-10 20:18:15 -07:00
parent d5a83f6d38
commit 528f5805e7
3 changed files with 7 additions and 7 deletions

View File

@@ -2095,8 +2095,8 @@ export class CommandCenter {
await repository.applyStash();
}
@command('git.dropStash', { repository: true })
async dropStash(repository: Repository): Promise<void> {
@command('git.stashDrop', { repository: true })
async stashDrop(repository: Repository): Promise<void> {
const placeHolder = localize('pick stash to drop', "Pick a stash to drop");
const stash = await this.pickStash(repository, placeHolder);