Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

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

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

A comma separated list of options for specifying control characters to be removed from the text pasted into the terminal window. The supported values are:

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