Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

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

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

The contents of this option controls various toolbar settings. The possible values are: icons Toolbar buttons are shown with icons. text Toolbar buttons shown with text. horiz Icon and text of a toolbar button are horizontally arranged. only in GTK+ 2 GUI tooltips Tooltips are active for toolbar buttons. Tooltips refer to the popup help text which appears after the mouse cursor is placed over a toolbar button for a brief moment.

If you want the toolbar to be shown with icons as well as text, do the following:

:set tb=icons,text

Motif cannot display icons and text at the same time. They will show icons if both are requested.

If none of the strings specified in 'toolbar' are valid or if 'toolbar' is empty, this option is ignored. If you want to disable the toolbar, you need to set the 'guioptions' option. For example:

:set guioptions-=T

Also see gui-toolbar.

(default "icons,tooltips")

only for +GUI_GTK, +GUI_Motif and +GUI_Photon