diff options
author | erw7 <erw7.github@gmail.com> | 2021-02-06 12:51:24 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 12:51:24 +0900 |
commit | 787339892d7d0417716945dc1088f04031cab5ad (patch) | |
tree | f593634b71eb0440e5080fd54535a12669b04203 /src/nvim/options.lua | |
parent | c95e797b83051683fa5ee727a256c5bf108b7040 (diff) | |
parent | 4dc41c051615a10a9a3650abb91e76197136aedd (diff) | |
download | rneovim-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.lua | 8 |
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'}, |