Various basic editor commands

This commit is contained in:
2016-04-03 07:50:19 +08:00
parent f4dc0e7d9c
commit be1fc29d39
12 changed files with 394 additions and 22 deletions

View File

@@ -7,3 +7,8 @@ Components.Vim.State.Recorder.undo;
Components.Vim.State.Recorder.redo;
/** @type Function */
Components.Vim.State.Recorder.record;
/** @type Function */
Components.Vim.State.Recorder.save;
/** @type Boolean */
Components.Vim.State.Recorder.changed;

View File

@@ -10,9 +10,13 @@ Components.Vim.VimArea.statusFeeder;
/** @type {Components.Vim.StatusBar} */
Components.Vim.VimArea.statusBar;
/** @type {Number} */
/** @type Number */
Components.Vim.VimArea.index;
/** @type Number */
Components.Vim.VimArea.rows;
/** @type {Number} */
/** @type Number */
Components.Vim.VimArea.cols;
/** @type {Array} */
/** @type Array */
Components.Vim.VimArea.Instances;
/** @type Function */
Components.Vim.VimArea.dispose;