Skip to main content
Module

x/denops_std/option/mod.ts>imcmdline

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

When set the Input Method is always on when starting to edit a command line, unless entering a search pattern (see 'imsearch' for that). Setting this option is useful when your input method allows entering English characters directly, e.g., when it's used to type accented characters with dead keys.

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