Merge remote-tracking branch 'vim/master' into Astro
This commit is contained in:
@@ -5,6 +5,8 @@ Components.Vim.Cursor = function(){};
|
||||
Components.Vim.Cursor.feeder;
|
||||
/** @type {Components.Vim.IAction} */
|
||||
Components.Vim.Cursor.action;
|
||||
/** @type {Components.Vim.State.Recorder} */
|
||||
Components.Vim.Cursor.rec;
|
||||
|
||||
/** @type Function */
|
||||
Components.Vim.Cursor.moveX;
|
||||
@@ -19,6 +21,8 @@ Components.Vim.Cursor.updatePosition;
|
||||
/** @type Function */
|
||||
Components.Vim.Cursor.openAction;
|
||||
/** @type Function */
|
||||
Components.Vim.Cursor.openRunAction;
|
||||
/** @type Function */
|
||||
Components.Vim.Cursor.closeAction;
|
||||
|
||||
/** @type {Array} */
|
||||
|
9
botanjs/src/externs/Components.Vim.State.Recorder.js
Normal file
9
botanjs/src/externs/Components.Vim.State.Recorder.js
Normal file
@@ -0,0 +1,9 @@
|
||||
/** @constructor */
|
||||
Components.Vim.State.Recorder = function(){};
|
||||
|
||||
/** @type Function */
|
||||
Components.Vim.State.undo;
|
||||
/** @type Function */
|
||||
Components.Vim.State.redo;
|
||||
/** @type Function */
|
||||
Components.Vim.State.record;
|
7
botanjs/src/externs/Components.Vim.State.Stack.js
Normal file
7
botanjs/src/externs/Components.Vim.State.Stack.js
Normal file
@@ -0,0 +1,7 @@
|
||||
/** @constructor */
|
||||
Components.Vim.State.Stack = function(){};
|
||||
|
||||
/** @type Function */
|
||||
Components.Vim.State.Stack.play;
|
||||
/** @type Function */
|
||||
Components.Vim.State.Stack.store;
|
2
botanjs/src/externs/Components.Vim.State.js
Normal file
2
botanjs/src/externs/Components.Vim.State.js
Normal file
@@ -0,0 +1,2 @@
|
||||
/** @object */
|
||||
Components.Vim.State = {};
|
Reference in New Issue
Block a user