UNPKG

@chemzqm/neovim

Version:

NodeJS client API for vim9 and neovim

30 lines (29 loc) 808 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Metadata = exports.ExtType = void 0; const Buffer_1 = require("./Buffer"); const Tabpage_1 = require("./Tabpage"); const Window_1 = require("./Window"); var ExtType; (function (ExtType) { ExtType[ExtType["Buffer"] = 0] = "Buffer"; ExtType[ExtType["Window"] = 1] = "Window"; ExtType[ExtType["Tabpage"] = 2] = "Tabpage"; })(ExtType || (exports.ExtType = ExtType = {})); exports.Metadata = [ { constructor: Buffer_1.Buffer, name: 'Buffer', prefix: 'nvim_buf_', }, { constructor: Window_1.Window, name: 'Window', prefix: 'nvim_win_', }, { constructor: Tabpage_1.Tabpage, name: 'Tabpage', prefix: 'nvim_tabpage_', }, ];