Skip to main content
Module

x/denops_std/option/mod.ts>laststatus

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

The value of this option influences when the last window will have a status line: 0: never 1: only if there are at least two windows 2: always The screen looks nicer with a status line if you have several windows, but it takes another screen line. |status-line|

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