Skip to main content
Deno 2 is finally here ๐ŸŽ‰๏ธ
Learn more
Module

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

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

Specifies the name of the Perl shared library. The default is DYNAMIC_PERL_DLL, which was specified at compile time. Environment variables are expanded :set_env. This option cannot be set from a modeline or in the sandbox, for security reasons.

(default depends on the build)

only available when compiled with the +perl/dyn 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>; }