当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Neovim.call方法代码示例

本文整理汇总了TypeScript中@chemzqm/neovim.Neovim.call方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Neovim.call方法的具体用法?TypeScript Neovim.call怎么用?TypeScript Neovim.call使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@chemzqm/neovim.Neovim的用法示例。


在下文中一共展示了Neovim.call方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

 it('should clear all diagnostics', async () => {
   let diagnostic = createDiagnostic('foo')
   let buf = await createDiagnosticBuffer()
   let diagnostics = [diagnostic]
   buf.refresh(diagnostics)
   await helper.wait(100)
   await buf.clear()
   let content = await nvim.call('execute', [`sign place buffer=${buf.bufnr}`])
   let lines: string[] = content.split('\n')
   let line = lines.find(s => s.indexOf('CocError') != -1)
   expect(line).toBeUndefined()
   let winid = await nvim.call('bufwinid', buf.bufnr) as number
   let curr = await nvim.call('getloclist', [winid, { title: 1 }])
   expect(curr.title).toBeUndefined()
   let buffer = await nvim.buffer
   let res = await buffer.getVar('coc_diagnostic_info')
   expect(res).toEqual({
     information: 0,
     hint: 0,
     warning: 0,
     error: 0
   })
   let { matchIds } = buf as any
   expect(matchIds.size).toBe(0)
 })
开发者ID:illarionvk,项目名称:dotfiles,代码行数:25,代码来源:diagnosticBuffer.test.ts

示例2: start

 public async start(cwd?: string, env?: { [key: string]: string | null }): Promise<void> {
   let { nvim } = this
   nvim.pauseNotification()
   nvim.command('belowright 5new', true)
   nvim.command('setl winfixheight', true)
   nvim.command('setl norelativenumber', true)
   nvim.command('setl nonumber', true)
   if (env && Object.keys(env).length) {
     for (let key of Object.keys(env)) {
       nvim.command(`let $${key}='${env[key].replace(/'/g, "''")}'`, true)
     }
   }
   await nvim.resumeNotification()
   this.bufnr = await nvim.call('bufnr', '%')
   let cmd = [this.cmd, ...this.args]
   let opts: any = {}
   if (cwd) opts.cwd = cwd
   this.chanId = await nvim.call('termopen', [cmd, opts])
   if (env && Object.keys(env).length) {
     for (let key of Object.keys(env)) {
       nvim.command(`unlet $${key}`, true)
     }
   }
   await nvim.command('wincmd p')
 }
开发者ID:illarionvk,项目名称:dotfiles,代码行数:25,代码来源:terminal.ts

示例3: edit

 public async edit(file?: string): Promise<Buffer> {
   file = path.join(__dirname, file ? file : `${uuid()}`)
   let escaped = await this.nvim.call('fnameescape', file)
   await this.nvim.command(`edit ${escaped}`)
   await this.wait(60)
   let bufnr = await this.nvim.call('bufnr', ['%']) as number
   return this.nvim.createBuffer(bufnr)
 }
开发者ID:demelev,项目名称:coc.nvim,代码行数:8,代码来源:helper.ts

示例4: it

 it('should start completion', async () => {
   await nvim.setLine('foo football')
   await nvim.input('a')
   await nvim.call('cursor', [1, 2])
   let option: CompleteOption = await nvim.call('coc#util#get_complete_option')
   await completion.startCompletion(option)
   await helper.wait(30)
   expect(completion.isActivted).toBe(true)
 })
开发者ID:illarionvk,项目名称:dotfiles,代码行数:9,代码来源:completion.test.ts

示例5: reset

 public async reset(): Promise<void> {
   let mode = await this.nvim.call('mode')
   if (mode !== 'n') {
     await this.nvim.command('stopinsert')
     await this.nvim.call('feedkeys', [String.fromCharCode(27), 'int'])
   }
   await this.nvim.command('silent! %bwipeout!')
   await this.wait(60)
 }
开发者ID:demelev,项目名称:coc.nvim,代码行数:9,代码来源:helper.ts

示例6: it

 it('should show floating window on cursor hold', async () => {
   let config = workspace.getConfiguration('diagnostic')
   config.update('messageTarget', 'float')
   await createDocument()
   await nvim.call('cursor', [1, 3])
   let winid = await helper.waitFloat()
   let bufnr = await nvim.call('nvim_win_get_buf', winid) as number
   let buf = nvim.createBuffer(bufnr)
   let lines = await buf.lines
   expect(lines.join('\n')).toMatch('error')
 })
开发者ID:illarionvk,项目名称:dotfiles,代码行数:11,代码来源:diagnosticManager.test.ts

示例7: it

 it('should resume list', async () => {
   await manager.start(['--normal', 'location'])
   await helper.wait(300)
   await nvim.eval('feedkeys("j", "in")')
   await helper.wait(30)
   let line = await nvim.call('line', '.')
   expect(line).toBe(2)
   await manager.cancel()
   await helper.wait(30)
   await manager.resume()
   await helper.wait(60)
   line = await nvim.call('line', '.')
   expect(line).toBe(2)
 })
开发者ID:illarionvk,项目名称:dotfiles,代码行数:14,代码来源:manager.test.ts


注:本文中的@chemzqm/neovim.Neovim.call方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。