Skip to main content
Module

x/denops_std/option/mod.ts>guitabtooltip

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

When non-empty describes the text to use in a tooltip for the GUI tab pages line. When empty Vim will use a default tooltip. This option is otherwise just like 'guitablabel' above. You can include a line break. Simplest method is to use :let:

:let &guitabtooltip = "line one\nline two"

(default empty)

only available when compiled with GUI enabled

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