Skip to main content
Module

x/denops_std/option/mod.ts>spelloptions

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

{not available when compiled without the |+syntax| feature} A comma-separated list of options for spell checking: camel When a word is CamelCased, assume "Cased" is a separate word: every upper-case character in a word that comes after a lower case character indicates the start of a new word.

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