Skip to main content
Module

x/denops_std/option/mod.ts>spellcapcheck

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

{not available when compiled without the |+syntax| feature} Pattern to locate the end of a sentence. The following word will be checked to start with a capital letter. If not then it is highlighted with SpellCap |hl-SpellCap| (unless the word is also badly spelled). When this check is not wanted make this option empty. Only used when 'spell' is set. Be careful with special characters, see |option-backslash| about including spaces and backslashes. To set this option automatically depending on the language, see |set-spc-auto|.

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