Skip to main content
Module

x/dpp_vim/deps.ts>op.vartabstop

Dark powered plugin manager for Vim/neovim
Latest
variable op.vartabstop
import { op } from "https://deno.land/x/dpp_vim@v0.2.0/deps.ts";
const { vartabstop } = op;

A list of the number of spaces that a <Tab> in the file counts for, separated by commas. Each value corresponds to one tab, with the final value applying to all subsequent tabs. For example:

:set vartabstop=4,20,10,8

This will make the first tab 4 spaces wide, the second 20 spaces, the third 10 spaces, and all following tabs 8 spaces.

Note that the value of 'tabstop' will be ignored while 'vartabstop' is set.

(default "")

only available when compiled with the +vartabs feature

type

LocalOption<string>