Skip to main content
Module

x/denops_std/option/mod.ts>printexpr

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

Expression used to print the PostScript produced with :hardcopy. See pexpr-option. This option cannot be set from a modeline or in the sandbox, for security reasons.

(default: see below)

only available when compiled with the +printer and +postscript features

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