Skip to main content
Module

x/dpp_vim/deps.ts>op.confirm

Dark powered plugin manager for Vim/neovim
Latest
variable op.confirm
import { op } from "https://deno.land/x/dpp_vim@v0.2.0/deps.ts";
const { confirm } = op;

When 'confirm' is on, certain operations that would normally fail because of unsaved changes to a buffer, e.g. ":q" and ":e", instead raise a dialog asking if you wish to save the current file(s). You can still use a ! to unconditionally abandon a buffer. If 'confirm' is off you can still activate confirmation for one command only (this is most useful in mappings) with the :confirm command. Also see the confirm() function and the 'v' flag in 'guioptions'.

(default off)

type

GlobalOption<boolean>