Skip to main content
Module

x/denops_std/option/mod.ts>loadplugins

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

When on the plugin scripts are loaded when starting up load-plugins. This option can be reset in your vimrc file to disable the loading of plugins. Note that using the "-u NONE", "-u DEFAULTS" and "--noplugin" command line arguments reset this option. See -u and --noplugin.

(default on)

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