diff options
author | erw7 <erw7.github@gmail.com> | 2020-04-04 16:10:09 +0900 |
---|---|---|
committer | erw7 <erw7.github@gmail.com> | 2021-02-04 15:20:05 +0900 |
commit | 1e3fadb4196275f45009350b15fd39aef9d848c7 (patch) | |
tree | fc2007bcbff50afdbcc8712102dc19f003132f93 /src/nvim/options.lua | |
parent | 14158e8d4722bf96614e5b51bd098dd77422c7c5 (diff) | |
download | rneovim-1e3fadb4196275f45009350b15fd39aef9d848c7.tar.gz rneovim-1e3fadb4196275f45009350b15fd39aef9d848c7.tar.bz2 rneovim-1e3fadb4196275f45009350b15fd39aef9d848c7.zip |
Add termpastefilter option
Change to specify a character to be filtered as an option when pasting on
the terminal.
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..59f36b8479 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=""}} + }, + { full_name='terse', short_desc=N_("hides notification of search wrap"), type='bool', scope={'global'}, |