Merge remote-tracking branches 'vim/master' and 'origin/master' into Astro

This commit is contained in:
2016-03-18 05:39:13 +08:00
18 changed files with 863 additions and 103 deletions

View File

@@ -38,6 +38,8 @@ Components.Vim.Cursor.X;
/** @type Number */
Components.Vim.Cursor.Y;
/** @type Number */
Components.Vim.Cursor.aPos;
/** @type Number */
Components.Vim.Cursor.cols;
/** @type message */
Components.Vim.Cursor.string;

View File

@@ -0,0 +1,7 @@
/** @constructor */
Components.Vim.DateTime = function(){};
/** @type Function */
Components.Vim.DateTime.RelativeTime;
/** @type Function */
Components.Vim.DateTime.String;

View File

@@ -5,3 +5,5 @@ Components.Vim.State.Stack = function(){};
Components.Vim.State.Stack.play;
/** @type Function */
Components.Vim.State.Stack.store;
/** @type Function */
Components.Vim.State.Stack.time;

View File

@@ -6,3 +6,5 @@ System.utils.Perf.uuid;
/** @type {Function} */
System.utils.Perf.ArrayReverse;
/** @type {Function} */
System.utils.Perf.CountSubstr;