Added Support for S

This commit is contained in:
2017-03-17 19:09:28 +08:00
parent 1511c70957
commit 282ecffce2
8 changed files with 35 additions and 24 deletions
+2 -2
View File
@@ -566,11 +566,11 @@
};
// Open, Run, then close an action
Cursor.prototype.openRunAction = function( name, e, arg1, arg2, arg3, arg4, arg5 )
Cursor.prototype.openRunAction = function( name, e, eO, arg1, arg2, arg3, arg4, arg5 )
{
debug.Info( "OpenRunAction: " + name );
/** @type {Components.Vim.IAction} */
var action = new (Actions[ name ])( this );
var action = new (Actions[ name ])( this, eO );
action.handler( e, arg1, arg2, arg3, arg4, arg5 );
this.__pulseMsg = action.getMessage();
action.dispose();