Skip to main content
Module

x/denops_std/option/mod.ts>ignorecase

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

Ignore case in search patterns. Also used when searching in the tags file. Also see 'smartcase' and 'tagcase'. Can be overruled by using "\c" or "\C" in the pattern, see /ignorecase.

(default off)

type

{ get(denops: Denops): Promise<boolean>; set(denops: Denops, value: boolean): Promise<void>; reset(denops: Denops): Promise<void>; getGlobal(denops: Denops): Promise<boolean>; setGlobal(denops: Denops, value: boolean): Promise<void>; resetGlobal(denops: Denops): Promise<void>; }