Skip to main content
Module

x/ddc_vim/deps.ts>op.showmatch

Dark deno-powered completion framework for neovim/Vim
Latest
variable op.showmatch
import { op } from "https://deno.land/x/ddc_vim@v4.3.1/deps.ts";
const { showmatch } = op;

When a bracket is inserted, briefly jump to the matching one. The jump is only done if the match can be seen on the screen. The time to show the match can be set with 'matchtime'. A Beep is given if there is no match (no matter if the match can be seen or not). This option is reset when 'paste' is set and restored when 'paste' is reset. When the 'm' flag is not included in 'cpoptions', typing a character will immediately move the cursor back to where it belongs. See the "sm" field in 'guicursor' for setting the cursor shape and blinking when showing the match. The 'matchpairs' option can be used to specify the characters to show matches for. 'rightleft' and 'revins' are used to look for opposite matches. Also see the matchparen plugin for highlighting the match when moving around pi_paren.txt. Note: Use of the short form is rated PG.

(default off)

type

GlobalOption<boolean>