Added :{number} support

This commit is contained in:
2017-03-17 13:34:31 +08:00
parent 68ee6dacc6
commit 1511c70957
12 changed files with 313 additions and 37 deletions

View File

@@ -13,6 +13,8 @@ Components.Vim.Cursor.rec;
/** @type Function */
Components.Vim.Cursor.moveTo;
/** @type Function */
Components.Vim.Cursor.gotoLine;
/** @type Function */
Components.Vim.Cursor.moveX;
/** @type Function */
Components.Vim.Cursor.moveY;

View File

@@ -43,6 +43,8 @@ Components.Vim.LineFeeder.linesOccupied;
/** @type String */
Components.Vim.LineFeeder.docPos;
/** @type String */
Components.Vim.LineFeeder.line;
/** @type String */
Components.Vim.LineFeeder.lineStat;
/** @type {String} */
Components.Vim.LineFeeder.content;

View File

@@ -0,0 +1,10 @@
/** @constructor */
Components.Vim.State.Marks = function(){};
/** @type Function */
Components.Vim.State.Marks.set;
/** @type Function */
Components.Vim.State.Marks.get;
/** @type String */
Components.Vim.State.Marks.Keys;

View File

@@ -12,6 +12,11 @@ Components.Vim.VimArea.statusFeeder;
/** @type {Components.Vim.StatusBar} */
Components.Vim.VimArea.statusBar;
/** @type {Components.Vim.State.Registers} */
Components.Vim.VimArea.registers;
/** @type {Components.Vim.State.Marks} */
Components.Vim.VimArea.marks;
/** @type Function */
Components.Vim.VimArea.demo;
/** @type Function */