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

x/denops_std/option/nvim/mod.ts>shadafile

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

When non-empty, overrides the file name used for shada (viminfo). When equal to "NONE" no shada file will be read or written. This option can be set with the -i command line flag. The --clean command line flag sets it to "NONE". This option cannot be set from a modeline or in the sandbox, for security reasons.

(default: "")

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