Skip to main content
Module

x/ddu_vim/deps.ts>fn.matchdelete

Dark deno-powered UI framework for neovim/Vim8
Go to Latest
function fn.matchdelete
import { fn } from "https://deno.land/x/ddu_vim@v1.13.0/deps.ts";
const { matchdelete } = fn;

Deletes a match with ID {id} previously defined by |matchadd()| or one of the |:match| commands. Returns 0 if successful, otherwise -1. See example for |matchadd()|. All matches can be deleted in one operation by |clearmatches()|. If {win} is specified, use the window with this number or window ID instead of the current window. Can also be used as a |method|: GetMatch()->matchdelete()

Parameters

denops: Denops
id: unknown
optional
win: unknown

Returns

Promise<unknown>