Skip to main content
Module

x/denops_std/option/mod.ts>grepformat

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

Format to recognize for the ":grep" command output. This is a scanf-like string that uses the same format as the 'errorformat' option: see errorformat.

(default "%f:%l:%m,%f:%l%m,%f %l%m")

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