Skip to main content
Module

x/denops_std/option/mod.ts>showtabline

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

The value of this option specifies when the line with tab page labels will be displayed: 0: never 1: only if there are at least two tab pages 2: always This is both for the GUI and non-GUI implementation of the tab pages line. See |tab-page| for more information about tab pages.

type

{ get(denops: Denops): Promise<number>; set(denops: Denops, value: number): Promise<void>; reset(denops: Denops): Promise<void>; getGlobal(denops: Denops): Promise<number>; setGlobal(denops: Denops, value: number): Promise<void>; resetGlobal(denops: Denops): Promise<void>; }