Skip to main content
Module

x/denops_std/option/mod.ts>indentkeys

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

A list of keys that, when typed in Insert mode, cause reindenting of the current line. Only happens if 'indentexpr' isn't empty. The format is identical to 'cinkeys', see |indentkeys-format|. See |C-indenting| and |indent-expression|.

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>; }