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

x/denops_std/option/vim/mod.ts>imstatusfunc

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

This option specifies a function that is called to obtain the status of Input Method. It must return a positive number when IME is active. It is not used in the MS-Windows GUI version.

type

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