partial insert support

This commit is contained in:
2016-03-16 00:11:39 +08:00
parent b7c693be07
commit 8bc4db7283
6 changed files with 83 additions and 14 deletions

View File

@@ -5,6 +5,17 @@
var debug = __import( "System.Debug" );
var Mesg = __import( "Components.Vim.Message" );
var Translate = function( c )
{
switch( c )
{
case "Tab":
return "\t";
default:
return c;
}
};
/** @type {Components.Vim.Cursor.IAction} */
var INSERT = function( Cursor )
{
@@ -19,7 +30,41 @@
INSERT.prototype.handler = function( e )
{
e.preventDefault();
var inputChar = e.key;
var inputChar = Translate( e.key );
if( inputChar.length != 1 ) return;
var cur = this.cursor;
var feeder = cur.feeder;
var line = cur.getLine();
var n = line.lineNum;
var cont = feeder.content;
var f = 0;
if( 0 < n )
{
f = cont.indexOf( "\n" );
for( i = 1; f != -1 && i < n; i ++ )
{
f = cont.indexOf( "\n", f + 1 );
}
if( this.cursor.feeder.wrap )
{
// wordwrap offset
f ++;
}
}
f += cur.aX;
feeder.content = cont.substring( 0, f ) + inputChar + cont.substring( f );
feeder.pan();
feeder.dispatcher.dispatchEvent( new BotanEvent( "VisualUpdate" ) );
cur.moveX( 1 );
};
INSERT.prototype.getMessage = function()