Skip to main content
Module

x/ddc_vim/deps.ts>op.undodir

Dark deno-powered completion framework for neovim/Vim
Latest
variable op.undodir
import { op } from "https://deno.land/x/ddc_vim@v4.3.1/deps.ts";
const { undodir } = op;

List of directory names for undo files, separated with commas. See 'backupdir' for details of the format. "." means using the directory of the file. The undo file name for "file.txt" is ".file.txt.un~". For other directories the file name is the full path of the edited file, with path separators replaced with "%". When writing: The first directory that exists is used. "." always works, no directories after "." will be used for writing. When reading all entries are tried to find an undo file. The first undo file that exists is used. When it cannot be read an error is given, no further entry is used. See undo-persistence. This option cannot be set from a modeline or in the sandbox, for security reasons.

(default ".")

only when compiled with the +persistent_undo feature

type

GlobalOption<string>