Skip to main content
Module

x/ddc_vim/deps.ts>op.eventignore

Dark deno-powered completion framework for neovim/Vim8
Go to Latest
variable op.eventignore
import { op } from "https://deno.land/x/ddc_vim@v2.3.0/deps.ts";
const { eventignore } = op;

A list of autocommand event names, which are to be ignored. When set to "all" or when "all" is one of the items, all autocommand events are ignored, autocommands will not be executed. Otherwise this is a comma separated list of event names. Example: > :set ei=WinEnter,WinLeave <