Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/denops_std/option/nvim/mod.ts>winhighlight

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

Window-local highlights. Comma-delimited list of highlight |group-name| pairs "{hl-builtin}:{hl},..." where each {hl-builtin} is a built-in |highlight-groups| item to be overridden by {hl} group in the window. Only built-in |highlight-groups| are supported, not syntax highlighting (use |:ownsyntax| for that).

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>; }