Skip to main content
Module

x/ddc_vim/deps.ts>op.winwidth

Dark deno-powered completion framework for neovim/Vim
Latest
variable op.winwidth
import { op } from "https://deno.land/x/ddc_vim@v4.3.1/deps.ts";
const { winwidth } = op;

Minimal number of columns for the current window. This is not a hard minimum, Vim will use fewer columns if there is not enough room. If the current window is smaller, its size is increased, at the cost of the width of other windows. Set it to 999 to make the current window always fill the screen. Set it to a small number for normal editing. The width is not adjusted after one of the commands to change the width of the current window. 'winwidth' applies to the current window. Use 'winminwidth' to set the minimal width for other windows.

(default 20)

type

GlobalOption<number>