Partial indent command

This commit is contained in:
2016-04-16 00:06:59 +08:00
parent a3fa2e82d7
commit 78cb3d3610
9 changed files with 284 additions and 24 deletions
+2 -2
View File
@@ -376,13 +376,13 @@
// Open an action handler
// i.e. YANK, VISUAL, INSERT, UNDO, etc.
Cursor.prototype.openAction = function( name )
Cursor.prototype.openAction = function( name, e )
{
if( this.action ) this.action.dispose();
debug.Info( "openAction: " + name );
this.action = new (Actions[ name ])( this );
this.action = new (Actions[ name ])( this, e );
this.__pulseMsg = null;
this.__visualUpdate();