Skip to main content
Module

x/denops_std/option/mod.ts>helpheight

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

Minimal initial height of the help window when it is opened with the ":help" command. The initial height of the help window is half of the current window, or (when the 'ea' option is on) the same as other windows. When the height is less than 'helpheight', the height is set to 'helpheight'. Set to zero to disable.

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