Moves Commands into commands file

This commit is contained in:
Eric Amodio
2017-02-25 02:19:40 -05:00
parent 237e464c44
commit a2f4c4c953
20 changed files with 95 additions and 102 deletions

View File

@@ -1,7 +1,7 @@
'use strict';
import { commands, TextEditor, TextEditorEdit, Uri, window } from 'vscode';
import { EditorCommand } from './commands';
import { BuiltInCommands, Commands } from '../constants';
import { Commands, EditorCommand } from '../commands';
import { BuiltInCommands } from '../constants';
import GitProvider, { GitCommit, GitUri } from '../gitProvider';
import { Logger } from '../logger';
import * as path from 'path';