diff options
author | ckelsel <ckelsel@hotmail.com> | 2017-09-24 11:06:16 +0800 |
---|---|---|
committer | ckelsel <ckelsel@hotmail.com> | 2017-09-24 11:47:53 +0800 |
commit | 583b68f5a94f362c44ff29c62909969e6908438b (patch) | |
tree | c9a49feb17f0c77331c0986b307f1eb18286422e /src/nvim/options.lua | |
parent | 4bb0e95abbf0a61d383d5261019a2667706c9d39 (diff) | |
download | rneovim-583b68f5a94f362c44ff29c62909969e6908438b.tar.gz rneovim-583b68f5a94f362c44ff29c62909969e6908438b.tar.bz2 rneovim-583b68f5a94f362c44ff29c62909969e6908438b.zip |
vim-patch:8.0.0101
Problem: Some options are not strictly checked.
Solution: Add flags for strickter checks.
https://github.com/vim/vim/commit/031cb743ae154cfb727a9b7787bdcb61202ff1c8
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 103227f6b5..757fac9465 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -575,6 +575,7 @@ return { full_name='dictionary', abbreviation='dict', type='string', list='onecomma', scope={'global', 'buffer'}, deny_duplicates=true, + normal_fname_chars=true, vi_def=true, expand=true, varname='p_dict', @@ -1750,6 +1751,7 @@ return { { full_name='printexpr', abbreviation='pexpr', type='string', scope={'global'}, + secure=true, vi_def=true, varname='p_pexpr', defaults={if_true={vi=""}} |