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


TypeScript client.NeovimClient类代码示例

本文整理汇总了TypeScript中neovim/lib/api/client.NeovimClient的典型用法代码示例。如果您正苦于以下问题:TypeScript NeovimClient类的具体用法?TypeScript NeovimClient怎么用?TypeScript NeovimClient使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: attachBindings

export function attachBindings(nvim: NeovimClient, bindings: IBindings) {
  let commands: string[] = [];
  for (let key in bindings) {
    commands.push(
      `nnoremap <silent> <buffer> ${key} :call rpcnotify(g:chrome_rpc_id, '${NOTIFICATION_TYPE}', '${escape(key)}')<cr>`
    );
  }
  activeBindings = bindings;
  return nvim.command(commands.join(' | '));
}
开发者ID:duskpoet,项目名称:chrome-debugger-vim,代码行数:10,代码来源:bindings.ts

示例2: setupBindings

export function setupBindings(nvim: NeovimClient) {
  nvim.removeListener('notification', onNotify);
  nvim.on('notification', onNotify);
  activeBindings = {};
}
开发者ID:duskpoet,项目名称:chrome-debugger-vim,代码行数:5,代码来源:bindings.ts

示例3: inspectSite

export function inspectSite(options: IPromiseReturn) {
  const wsUrl = options.site.webSocketDebuggerUrl;
  nvim = options.nvim;
  ws = new WebSocket(wsUrl);
  ws.on('open', listenMessages);
  ws.on('message', onMessage);
  ws.on('close', onClose);
  nvim.on('notification', onNvimNotify);
  scripts = new Scripts();
  page = new VTreePage(nvim);
}
开发者ID:duskpoet,项目名称:chrome-debugger-vim,代码行数:11,代码来源:inspect-site.ts

示例4: Promise

export async function fetchSites(): Promise<IPromiseReturn> {
  try {
    nvim = await attach({ reader: process.stdin, writer: process.stdout });

    page = new VPage(nvim);
    await page.init();
    await step1();
    await step2();
    await step3();
    nvim.command('setlocal nomodifiable cursorline buftype=nofile');
    return new Promise(function(rs: SiteCB, rj) {
      resolve = rs;
    });
  } catch(ex) {
    if (page.buffer) {
      await page.fill(ex.toString());
      nvim.command('setlocal nomodifiable buftype=nofile');
    } else {
      logger.error(ex);
    }
    return;
  }
}
开发者ID:duskpoet,项目名称:chrome-debugger-vim,代码行数:23,代码来源:fetch-sites.ts


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