forked from Botanical/BotanJS
10 lines
237 B
JavaScript
10 lines
237 B
JavaScript
|
/** @constructor */
|
||
|
Components.Vim.State.History = function(){};
|
||
|
|
||
|
/** @type Function */
|
||
|
Components.Vim.State.History.push;
|
||
|
/** @type Function */
|
||
|
Components.Vim.State.History.prev;
|
||
|
/** @type Function */
|
||
|
Components.Vim.State.History.next;
|