Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/denops_std/option/mod.ts>spell

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

When on spell checking will be done. See spell. The languages are specified with 'spelllang'.

(default off)

not available when compiled without the +syntax feature

type

{ get(denops: Denops): Promise<boolean>; set(denops: Denops, value: boolean): Promise<void>; reset(denops: Denops): Promise<void>; getLocal(denops: Denops): Promise<boolean>; setLocal(denops: Denops, value: boolean): Promise<void>; resetLocal(denops: Denops): Promise<void>; }