Adds show last quick pick command

This commit is contained in:
Eric Amodio
2017-03-20 12:05:45 -04:00
parent d53caa2137
commit a5d1d74d7b
10 changed files with 101 additions and 35 deletions

View File

@@ -1,11 +1,11 @@
'use strict';
import { TextEditor, Uri, window } from 'vscode';
import { ActiveEditorCommand, Commands } from './commands';
import { ActiveEditorCachedCommand, Commands } from './commands';
import { GitService } from '../gitService';
import { Logger } from '../logger';
import { CommandQuickPickItem, RepoStatusQuickPick } from '../quickPicks';
export class ShowQuickRepoStatusCommand extends ActiveEditorCommand {
export class ShowQuickRepoStatusCommand extends ActiveEditorCachedCommand {
constructor(private git: GitService, private repoPath: string) {
super(Commands.ShowQuickRepoStatus);