Skip to main content
Module

x/denops_std/option/mod.ts>varsofttabstop

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

{only available when compiled with the |+vartabs| feature} A list of the number of spaces that a counts for while editing, such as inserting a or using . It "feels" like variable- width s are being inserted, while in fact a mixture of spaces and s is used. Tab widths are separated with commas, with the final value applying to all subsequent tabs.

type

{ get(denops: Denops): Promise<string>; set(denops: Denops, value: string): Promise<void>; reset(denops: Denops): Promise<void>; getLocal(denops: Denops): Promise<string>; setLocal(denops: Denops, value: string): Promise<void>; resetLocal(denops: Denops): Promise<void>; }