Remove useless imports

This commit is contained in:
2016-03-15 03:38:05 +08:00
parent 52e4733fcc
commit ee26a7dcc8
8 changed files with 106 additions and 139 deletions

View File

@@ -1,17 +1,8 @@
(function(){
var ns = __namespace( "Components.Vim.Actions" );
/** @type {Dandelion} */
var Dand = __import( "Dandelion" );
/** @type {Dandelion.IDOMElement} */
var IDOMElement = __import( "Dandelion.IDOMElement" );
/** @type {Dandelion.IDOMObject} */
var IDOMObject = __import( "Dandelion.IDOMObject" );
/** @type {System.Cycle} */
var Cycle = __import( "System.Cycle" );
/** @type {System.Debug} */
var debug = __import( "System.Debug" );
var debug = __import( "System.Debug" );
var Mesg = __import( "Components.Vim.Message" );
/** @type {Components.Vim.Cursor.IAction} */
@@ -25,6 +16,14 @@
{
};
INSERT.prototype.handler = function( e )
{
e.preventDefault();
if( e.key.length == "1" )
{
}
};
INSERT.prototype.getMessage = function()
{
var l = this.cursor.feeder.firstBuffer.cols;