Skip to main content
Module

x/denops_std/option/mod.ts>matchtime

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

Tenths of a second to show the matching paren, when 'showmatch' is set. Note that this is not in milliseconds, like other options that set a time. This is to be compatible with Nvi.

(default 5)

type

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