Skip to main content
Module

x/ddc_vim/deps.ts>op.breakindentopt

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

Settings for 'breakindent'. It can consist of the following optional items and must be separated by a comma: min:{n} Minimum text width that will be kept after applying 'breakindent', even if the resulting text should normally be narrower. This prevents text indented almost to the right window border occupying lot of vertical space when broken. (default: 20) shift:{n} After applying 'breakindent', the wrapped line's beginning will be shifted by the given number of characters. It permits dynamic French paragraph indentation (negative) or emphasizing the line continuation (positive). (default: 0) sbr Display the 'showbreak' value before applying the additional indent. (default: off) list:{n} Adds an additional indent for lines that match a numbered or bulleted list (using the 'formatlistpat' setting). list:-1 Uses the length of a match with 'formatlistpat' for indentation. (default: 0) column:{n} Indent at column {n}. Will overrule the other sub-options. Note: an additional indent may be added for the 'showbreak' setting. (default: off)

(default empty)

not available when compiled without the +linebreak feature

type

LocalOption<string>