本文整理匯總了TypeScript中@chemzqm/neovim.Neovim.uiAttach方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Neovim.uiAttach方法的具體用法?TypeScript Neovim.uiAttach怎麽用?TypeScript Neovim.uiAttach使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@chemzqm/neovim.Neovim
的用法示例。
在下文中一共展示了Neovim.uiAttach方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: setup
public setup(): Promise<void> {
const vimrc = path.resolve(__dirname, 'vimrc')
let proc = this.proc = cp.spawn('nvim', ['-u', vimrc, '-i', 'NONE', '--embed'], {
cwd: __dirname
})
let plugin = this.plugin = attach({ proc })
this.nvim = plugin.nvim
this.nvim.uiAttach(80, 80, {}).catch(_e => {
// noop
})
proc.on('exit', () => {
this.proc = null
})
this.nvim.on('notification', (method, args) => {
if (method == 'redraw') {
for (let arg of args) {
let event = arg[0]
this.emit(event, arg.slice(1))
}
}
})
return new Promise(resolve => {
plugin.once('ready', resolve)
})
}