botanjs/src/externs/Components.Vim.Controls.ActionEvent.js
raw ยท 925 bytes
/**
* @constructor
* @param {Components.Vim.VimArea} sender
* @param {Event|string} e
*/
Components.Vim.ControlActionEvent = function(sender, e){};
/** @type {Components.Vim.VimArea} */
Components.Vim.ControlActionEvent.prototype.target;
/** @type {Components.Vim.Syntax.TokenMatch} */
Components.Vim.ControlActionEvent.prototype.range;
/** @type {Number} */
Components.Vim.ControlActionEvent.prototype.count;
/** @type String */
Components.Vim.ControlActionEvent.prototype.key;
/** @type Boolean */
Components.Vim.ControlActionEvent.prototype.ModKeys;
/** @type Boolean */
Components.Vim.ControlActionEvent.prototype.Escape;
/** @type Boolean */
Components.Vim.ControlActionEvent.prototype.canceled;
/** @type Number */
Components.Vim.ControlActionEvent.prototype.keyCode;
/** @type Function */
Components.Vim.ControlActionEvent.prototype.kMap;
/** @type Function */
Components.Vim.ControlActionEvent.prototype.cancel;