Skip to main content
Module

x/denops_std/option/mod.ts>signcolumn

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

Whether or not to draw the signcolumn. Valid values are: "auto" only when there is a sign to display "no" never "yes" always "number" display signs in the 'number' column. If the number column is not present, then behaves like "auto".

(default "auto")

not available when compiled without the +signs feature

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