Wrapping keyboardevent with InputEvent

This commit is contained in:
2016-03-22 19:31:19 +08:00
parent 75662e6d04
commit 5f5e0604fa
5 changed files with 69 additions and 38 deletions

View File

@@ -0,0 +1,13 @@
/** @constructor */
Components.Vim.Controls.InputEvent = function(){};
/** @type String */
Components.Vim.Controls.InputEvent.key;
/** @type Boolean */
Components.Vim.Controls.InputEvent.ModKeys;
/** @type Boolean */
Components.Vim.Controls.InputEvent.Escape;
/** @type Number */
Components.Vim.Controls.InputEvent.keyCode;
/** @type Function */
Components.Vim.Controls.InputEvent.kMap;

View File

@@ -1,7 +1,2 @@
/** @constructor */
Components.Vim.Controls = function(){};
/** @type Function */
Components.Vim.Controls.ModKeys;
/** @type Function */
Components.Vim.Controls.KMap;