Skip to main content
Module

x/denops_std/autocmd/common.ts>emitAll

📚 Standard module for denops.vim
Latest
function emitAll
import { emitAll } from "https://deno.land/x/denops_std@v6.5.0/autocmd/common.ts";

Emit an autocmd in all buffers

import type { Entrypoint } from "https://deno.land/x/denops_std@v6.5.0/mod.ts";
import * as autocmd from "https://deno.land/x/denops_std@v6.5.0/autocmd/mod.ts";

export const main: Entrypoint = async (denops) => {
  // Emit an autocmd in all buffers
  await autocmd.emitAll(denops, "BufEnter");

  // Emit multiple autocmds in all buffers
  await autocmd.emitAll(denops, ["BufEnter", "WinEnter"]);

  // Emit an autocmd in all buffers match with 'Hello'
  await autocmd.emitAll(denops, "BufEnter", "Hello");
}

Parameters

denops: Denops
optional
fname: string
optional
options: EmitOptions = [UNSUPPORTED]

Returns

Promise<unknown>