Skip to main content
Module

x/denops_std/option/mod.ts>guioptions

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

{only available when compiled with GUI enabled} This option only has an effect in the GUI version of Vim. It is a sequence of letters which describes what components and options of the GUI should be used. To avoid problems with flags that are added in the future, use the "+=" and "-=" feature of ":set" |add-option-flags|.

type

{ get(denops: Denops): Promise<string>; set(denops: Denops, value: string): Promise<void>; reset(denops: Denops): Promise<void>; getGlobal(denops: Denops): Promise<string>; setGlobal(denops: Denops, value: string): Promise<void>; resetGlobal(denops: Denops): Promise<void>; }