import { emitAll } from "https://deno.land/x/denops_std@v5.0.2/autocmd/mod.ts";
Emit an autocmd in all buffers
import { Denops } from "../mod.ts";
import * as autocmd from "./mod.ts";
export async function main(denops: Denops): Promise<void> {
// 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
event: AutocmdEvent | AutocmdEvent[]
optional
options: EmitOptions = [UNSUPPORTED]