Some placeholder commands in VISUAL

This commit is contained in:
2016-03-22 17:35:49 +08:00
parent 605ac1e95a
commit 75662e6d04
12 changed files with 296 additions and 26 deletions

View File

@@ -0,0 +1,32 @@
(function(){
var ns = __namespace( "Components.Vim.Actions" );
var Mesg = __import( "Components.Vim.Message" );
/** @type {Components.Vim.Cursor.IAction} */
var DELETE = function( Cursor )
{
/** @type {Components.Vim.Cursor} */
this.__cursor = Cursor;
};
DELETE.prototype.allowMovement = true;
DELETE.prototype.dispose = function()
{
};
DELETE.prototype.handler = function( e )
{
e.preventDefault();
};
DELETE.prototype.getMessage = function()
{
return "<TODO> DELETE COMMAND";
};
ns[ NS_EXPORT ]( EX_CLASS, "DELETE", DELETE );
})();

View File

@@ -1,12 +1,17 @@
(function(){
var ns = __namespace( "Components.Vim.Actions" );
/** @type {Components.Vim.State.Stack} */
var Stack = __import( "Components.Vim.State.Stack" );
/** @type {System.Debug} */
var debug = __import( "System.Debug" );
var debug = __import( "System.Debug" );
var Mesg = __import( "Components.Vim.Message" );
/** @type {Components.Vim.Controls} */
var Controls = __import( "Components.Vim.Controls" );
/** @type {Components.Vim.Cursor.IAction} */
var YANK = ns[ NS_INVOKE ]( "YANK" );
/** @type {Components.Vim.Cursor.IAction} */
var DELETE = ns[ NS_INVOKE ]( "DELETE" );
/** @type {Components.Vim.Cursor.IAction} */
var VISUAL = function( Cursor )
@@ -16,6 +21,8 @@
this.__startaP = Cursor.aPos;
this.__start = Cursor.PStart;
this.__selStart = Cursor.PStart;
this.__msg = Mesg( "VISUAL" );
this.__leaveMesg = "";
Cursor.blink = false;
};
@@ -24,17 +31,38 @@
VISUAL.prototype.dispose = function()
{
this.__msg = this.__leaveMesg;
this.__cursor.blink = true;
this.__cursor.PStart = this.__selStart;
this.__cursor.PEnd = this.__selStart + 1;
};
VISUAL.prototype.handler = function( e )
VISUAL.prototype.handler = function( e, done )
{
e.preventDefault();
if( [ 16, 17, 18 ].indexOf( e.keyCode ) != -1 ) return;
if( Controls.ModKeys( e ) ) return;
var Action = null;
switch( true )
{
case Controls.KMap( e, "y" ):
Action = new YANK( this.__cursor );
break;
case Controls.KMap( e, "d" ):
Action = new DELETE( this.__cursor );
break;
}
if( Action )
{
Action.handler( e );
this.__leaveMesg = Action.getMessage();
Action.dispose();
return true;
}
var cur = this.__cursor;
var prevPos = this.__start;
var newPos = cur.PStart;
@@ -58,9 +86,7 @@
VISUAL.prototype.getMessage = function()
{
var msg = Mesg( "VISUAL" );
return msg;
return this.__msg;
};
ns[ NS_EXPORT ]( EX_CLASS, "VISUAL", VISUAL );

View File

@@ -0,0 +1,32 @@
(function(){
var ns = __namespace( "Components.Vim.Actions" );
var Mesg = __import( "Components.Vim.Message" );
/** @type {Components.Vim.Cursor.IAction} */
var YANK = function( Cursor )
{
/** @type {Components.Vim.Cursor} */
this.__cursor = Cursor;
};
YANK.prototype.allowMovement = true;
YANK.prototype.dispose = function()
{
};
YANK.prototype.handler = function( e )
{
e.preventDefault();
};
YANK.prototype.getMessage = function()
{
return "<TODO> YANK COMMAND";
};
ns[ NS_EXPORT ]( EX_CLASS, "YANK", YANK );
})();