Skip to main content
Module

x/ddc_vim/deps.ts>op.foldmethod

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

The kind of folding used for the current window. Possible values: fold-manual manual Folds are created manually. fold-indent indent Lines with equal indent form a fold. fold-expr expr 'foldexpr' gives the fold level of a line. fold-marker marker Markers are used to specify folds. fold-syntax syntax Syntax highlighting items specify folds. fold-diff diff Fold text that is not changed.

(default: "manual")

not available when compiled without the +folding feature

type

LocalOption<string>