rename vim.all to include-all which seems more appropriate

This commit is contained in:
Jason Poon 2017-12-25 22:59:15 +11:00 committed by Jason Poon
parent 68b45a05e7
commit 4598309dda
2 changed files with 3 additions and 10 deletions

View File

@ -3,7 +3,7 @@
* events to their string names and passes them on to ModeHandler via
* handleKeyEvent().
*/
import './src/actions/vim.all';
import './src/actions/include-all';
import * as _ from 'lodash';
import * as vscode from 'vscode';

View File

@ -1,6 +1,3 @@
/**
* Make sure they are all loaded.
*/
import './base';
import './operator';
import './motion';
@ -8,13 +5,9 @@ import './textobject';
// commands
import './commands/insert';
import './commands/actions';
/**
* Plugins
*/
// easymotion
// plugin
import './plugins/easymotion/easymotion.cmd';
import './plugins/easymotion/registerMoveActions';
// surround
import './plugins/surround';