Skip to main content
Module

x/denops_std/option/mod.ts>belloff

📚 Standard module for denops.vim
Go to Latest
variable belloff
import { belloff } from "https://deno.land/x/denops_std@v4.1.0/option/mod.ts";

Specifies for which events the bell will not be rung. It is a comma separated list of items. For each item that is present, the bell will be silenced. This is most useful to specify specific events in insert mode to be silenced. You can also make it flash by using 'visualbell'.

type

{ get(denops: Denops): Promise<string>; set(denops: Denops, value: string): Promise<void>; reset(denops: Denops): Promise<void>; getGlobal(denops: Denops): Promise<string>; setGlobal(denops: Denops, value: string): Promise<void>; resetGlobal(denops: Denops): Promise<void>; }