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

x/denops_std/option/vim/mod.ts>term

๐Ÿ“š Standard module for denops.vim
Go to Latest
variable term
import { term } from "https://deno.land/x/denops_std@v4.2.0/option/vim/mod.ts";

Name of the terminal. Used for choosing the terminal control characters. Environment variables are expanded :set_env. For example:

:set term=$TERM

See termcap.

(default is $TERM, if that fails: in the GUI: "builtin_gui" on Amiga: "amiga" on Haiku: "xterm" on Mac: "mac-ansi" on Unix: "ansi" on VMS: "ansi" on Win 32: "win32")

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