Some placeholder commands in VISUAL

This commit is contained in:
2016-03-22 17:35:49 +08:00
parent 605ac1e95a
commit 75662e6d04
12 changed files with 296 additions and 26 deletions

View File

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

View File

@@ -1,6 +1,8 @@
/** @constructor */
Components.Vim.Cursor = function(){};
/** @type {Components.Vim.VimArea} */
Components.Vim.Cursor.Vim;
/** @type {Components.Vim.LineFeeder} */
Components.Vim.Cursor.feeder;
/** @type {Components.Vim.IAction} */

View File

@@ -2,8 +2,8 @@
Components.Vim.State.Recorder = function(){};
/** @type Function */
Components.Vim.State.undo;
Components.Vim.State.Recorder.undo;
/** @type Function */
Components.Vim.State.redo;
Components.Vim.State.Recorder.redo;
/** @type Function */
Components.Vim.State.record;
Components.Vim.State.Recorder.record;

View File

@@ -0,0 +1,9 @@
/** @constructor */
Components.Vim.State.Registers = function(){};
/** @type Function */
Components.Vim.State.Registers.change;
/** @type Function */
Components.Vim.State.Registers.yank;
/** @type Function */
Components.Vim.State.Registers.unnamed;

View File

@@ -12,3 +12,5 @@ Components.Vim.VimArea.statusBar;
Components.Vim.VimArea.rows;
/** @type {Number} */
Components.Vim.VimArea.cols;
/** @type {Array} */
Components.Vim.VimArea.Instances;