Refactors command & quickpick imports

This commit is contained in:
Eric Amodio
2017-03-01 01:13:53 -05:00
parent 226e98dd04
commit dfd0f8c365
19 changed files with 135 additions and 120 deletions

View File

@@ -1,12 +1,12 @@
'use strict';
import { Iterables } from '../system';
import { TextEditor, Uri, window } from 'vscode';
import { ActiveEditorCommand, Commands } from '../commands';
import { ActiveEditorCommand, Commands } from './commands';
import GitProvider, { GitUri } from '../gitProvider';
import { Logger } from '../logger';
import { copy } from 'copy-paste';
export default class CopyMessageToClipboardCommand extends ActiveEditorCommand {
export class CopyMessageToClipboardCommand extends ActiveEditorCommand {
constructor(private git: GitProvider, public repoPath: string) {
super(Commands.CopyMessageToClipboard);