Skip to main content
Deno 2 is finally here ๐ŸŽ‰๏ธ
Learn more
Module

x/denops_std/option/types.ts>GlobalOption

๐Ÿ“š Standard module for denops.vim
Go to Latest
type alias GlobalOption
import { type GlobalOption } from "https://deno.land/x/denops_std@v5.0.1/option/types.ts";

A global option that can be retrieved and modified.

Type Parameters

T

The type of the option value.

definition: Option<T> & { getGlobal(denops: Denops): Promise<T>; setGlobal(denops: Denops, value: T): Promise<void>; resetGlobal(denops: Denops): Promise<void>; }