Skip to main content
Module

x/denops_std/option/mod.ts>mousemoveevent

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

When on, mouse move events are delivered to the input queue and are available for mapping. The default, off, avoids the mouse movement overhead except when needed. See gui-mouse-mapping. Warning: Setting this option can make pending mappings to be aborted when the mouse is moved. Currently only works in the GUI, may be made to work in a terminal later.

(default off)

only works in the GUI

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