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>imactivatefunc

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

This option specifies a function that will be called to activate or deactivate the Input Method. It is not used in the MS-Windows GUI version. The expression will be evaluated in the |sandbox| when set from a modeline, see |sandbox-option|.

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