Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

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

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

When not empty a popup window is used for commands that would open a preview window. See preview-popup. Not used for the insert completion info, add "popup" to 'completeopt' for that.

(default empty)

not available when compiled without the +textprop or +quickfix feature

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