Search Ex Draft

This commit is contained in:
2016-04-02 14:25:25 +08:00
parent ddc7058964
commit c7249c071c
7 changed files with 268 additions and 25 deletions
+4 -2
View File
@@ -396,11 +396,11 @@
};
// Open, Run, then close an action
Cursor.prototype.openRunAction = function( name, e )
Cursor.prototype.openRunAction = function( name, e, arg1 )
{
/** @type {Components.Vim.IAction} */
var action = new (Actions[ name ])( this );
action.handler( e );
action.handler( e, arg1 );
this.__pulseMsg = action.getMessage();
action.dispose();
@@ -497,6 +497,8 @@
return p;
} );
__readOnly( Cursor.prototype, "face", function() { return "\u2588"; } );
__readOnly( Cursor.prototype, "message", function()
{
if( this.__pulseMsg )