Skip to main content
Module

x/ddc_vim/deps.ts>op.guitabtooltip

Dark deno-powered completion framework for neovim/Vim8
Go to Latest
variable op.guitabtooltip
import { op } from "https://deno.land/x/ddc_vim@v2.3.0/deps.ts";
const { guitabtooltip } = op;

{only available when compiled with GUI enabled} When nonempty 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" <