forked from Botanical/BotanJS
13 lines
285 B
JavaScript
13 lines
285 B
JavaScript
/** @constructor */
|
|
Components.Vim.IAction = function(){};
|
|
|
|
/** @type Function */
|
|
Components.Vim.IAction.dispose;
|
|
/** @type Function */
|
|
Components.Vim.IAction.handler;
|
|
/** @type Function */
|
|
Components.Vim.IAction.getMessage;
|
|
|
|
/** @type Boolean */
|
|
Components.Vim.IAction.allowMovement;
|