Skip to main content
Module

x/denops_std/option/mod.ts>matchpairs

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

Characters that form pairs. The |%| command jumps from one to the other. Only character pairs are allowed that are different, thus you cannot jump between two double quotes. The characters must be separated by a colon. The pairs must be separated by a comma. Example for including '<' and '>' (for HTML): > :set mps+=<:>

type

{ get(denops: Denops): Promise<string>; set(denops: Denops, value: string): Promise<void>; reset(denops: Denops): Promise<void>; getLocal(denops: Denops): Promise<string>; setLocal(denops: Denops, value: string): Promise<void>; resetLocal(denops: Denops): Promise<void>; }