aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/options.lua
diff options
context:
space:
mode:
authorerw7 <erw7.github@gmail.com>2021-02-06 12:51:24 +0900
committerGitHub <noreply@github.com>2021-02-06 12:51:24 +0900
commit787339892d7d0417716945dc1088f04031cab5ad (patch)
treef593634b71eb0440e5080fd54535a12669b04203 /src/nvim/options.lua
parentc95e797b83051683fa5ee727a256c5bf108b7040 (diff)
parent4dc41c051615a10a9a3650abb91e76197136aedd (diff)
downloadrneovim-787339892d7d0417716945dc1088f04031cab5ad.tar.gz
rneovim-787339892d7d0417716945dc1088f04031cab5ad.tar.bz2
rneovim-787339892d7d0417716945dc1088f04031cab5ad.zip
Merge pull request #12080 from erw7/feature-bracketed-paste-on-term
terminal: add bracketed pasting feature
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r--src/nvim/options.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index df2bfbce34..fe108ef1cc 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -2821,6 +2821,14 @@ return {
defaults={if_true={vi=false}}
},
{
+ full_name='termpastefilter', abbreviation='tpf',
+ type='string', list='onecomma', scope={'global'},
+ deny_duplicates=true,
+ vim=true,
+ varname='p_tpf',
+ defaults={if_true={vi="", vim="BS,HT,ESC,DEL"}}
+ },
+ {
full_name='terse',
short_desc=N_("hides notification of search wrap"),
type='bool', scope={'global'},