forked from Botanical/BotanJS
197 lines
3.7 KiB
JavaScript
197 lines
3.7 KiB
JavaScript
(function(){
|
|
var ns = __namespace( "Components.Vim.Actions" );
|
|
|
|
/** @type {System.Debug} */
|
|
var debug = __import( "System.Debug" );
|
|
|
|
/** @type {Components.Vim.State.Stator} */
|
|
var Stator = __import( "Components.Vim.State.Stator" );
|
|
/** @type {Components.Vim.State.Stack} */
|
|
var Stack = __import( "Components.Vim.State.Stack" );
|
|
|
|
var Mesg = __import( "Components.Vim.Message" );
|
|
|
|
var occurence = __import( "System.utils.Perf.CountSubstr" );
|
|
|
|
/** @type {Components.Vim.Cursor.IAction} */
|
|
var DELETE = function( Cursor )
|
|
{
|
|
/** @type {Components.Vim.Cursor} */
|
|
this.__cursor = Cursor;
|
|
this.__nline = 0;
|
|
this.__startX = Cursor.aPos;
|
|
this.__panY = this.__cursor.feeder.panY;
|
|
};
|
|
|
|
DELETE.prototype.allowMovement = true;
|
|
|
|
DELETE.prototype.dispose = function()
|
|
{
|
|
|
|
};
|
|
|
|
DELETE.prototype.handler = function( e, sp )
|
|
{
|
|
e.preventDefault();
|
|
|
|
if( e.ModKeys ) return;
|
|
|
|
/** @type {Components.Vim.State.Registers} */
|
|
var reg = e.target.registers;
|
|
|
|
var cur = this.__cursor;
|
|
var feeder = cur.feeder;
|
|
|
|
var Triggered = false;
|
|
|
|
if( sp == undefined )
|
|
{
|
|
Triggered = true;
|
|
|
|
sp = this.__startX;
|
|
|
|
cur.suppressEvent();
|
|
|
|
var currAp = cur.aPos;
|
|
if( this.__startX != currAp )
|
|
{
|
|
// Remove to start
|
|
if( e.kMap( "^" ) )
|
|
{
|
|
sp --;
|
|
}
|
|
// Remove char in cursor
|
|
else if( e.kMap( "l" ) )
|
|
{
|
|
cur.moveX( -1 );
|
|
}
|
|
// Remove char before cursor
|
|
else if( e.kMap( "h" ) )
|
|
{
|
|
sp = currAp;
|
|
}
|
|
// Remove the current and the following line
|
|
else if( e.kMap( "j" ) )
|
|
{
|
|
cur.lineEnd( true );
|
|
sp = cur.aPos;
|
|
cur.moveY( -1 );
|
|
cur.lineStart();
|
|
this.__startX = cur.aPos;
|
|
}
|
|
// Remove the current and the preceding line
|
|
else if( e.kMap( "k" ) )
|
|
{
|
|
cur.moveY( 1 );
|
|
cur.lineEnd( true );
|
|
sp = cur.aPos;
|
|
cur.moveY( -1 );
|
|
cur.lineStart();
|
|
}
|
|
else if( this.__startX < currAp )
|
|
{
|
|
// Swap the movement
|
|
// This is to move the REDO / UNDO Cursor
|
|
// position to the earlier position
|
|
sp = currAp;
|
|
cur.moveTo( this.__startX );
|
|
}
|
|
}
|
|
// Remove the current line
|
|
else
|
|
{
|
|
if( e.kMap( "d" ) )
|
|
{
|
|
cur.lineEnd( true );
|
|
sp = cur.aPos;
|
|
cur.lineStart();
|
|
}
|
|
else if( e.range )
|
|
{
|
|
sp = e.range.close;
|
|
cur.moveTo( e.range.open, true );
|
|
}
|
|
else if( e.kMap( "^" ) )
|
|
{
|
|
// Do nothing as nothing can be removed
|
|
// since there is no successful movement
|
|
return true;
|
|
}
|
|
// this is the same as kMap( "h" ) above
|
|
else if( e.kMap( "$" ) )
|
|
{
|
|
sp = cur.aPos;
|
|
}
|
|
else
|
|
{
|
|
cur.unsuppressEvent();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
cur.unsuppressEvent();
|
|
}
|
|
|
|
var c = feeder.content;
|
|
|
|
var s = sp;
|
|
var e = cur.aPos;
|
|
|
|
if( e < s )
|
|
{
|
|
s = cur.aPos;
|
|
e = sp;
|
|
}
|
|
|
|
var removed = c.substring( s, e + 1 );
|
|
reg.change( removed );
|
|
|
|
this.__nline = occurence( removed, "\n" );
|
|
|
|
feeder.content = c.substring( 0, s ) + c.substring( e + 1 );
|
|
|
|
// Try to keep the original panning if possible
|
|
cur.feeder.pan( undefined
|
|
, this.__panY < cur.feeder.panY
|
|
? this.__panY - cur.feeder.panY
|
|
: undefined
|
|
);
|
|
|
|
cur.moveTo( s );
|
|
|
|
var stator = new Stator( cur, s );
|
|
var stack = new Stack();
|
|
|
|
c = c[ e + 1 ];
|
|
if( c == "\n" || c == undefined )
|
|
{
|
|
cur.suppressEvent();
|
|
cur.moveX( -1 );
|
|
cur.unsuppressEvent();
|
|
}
|
|
|
|
var f = stator.save( 0, removed );
|
|
stack.store( function() {
|
|
f();
|
|
// Offset correction after REDO / UNDO
|
|
cur.moveX( 1 );
|
|
} );
|
|
|
|
cur.rec.record( stack );
|
|
|
|
return Triggered;
|
|
};
|
|
|
|
DELETE.prototype.getMessage = function()
|
|
{
|
|
if( this.__nline )
|
|
{
|
|
return Mesg( "LINE_FEWER", this.__nline );
|
|
}
|
|
|
|
return "";
|
|
};
|
|
|
|
ns[ NS_EXPORT ]( EX_CLASS, "DELETE", DELETE );
|
|
})();
|