diff options
author | ckelsel <ckelsel@hotmail.com> | 2017-09-24 11:54:40 +0800 |
---|---|---|
committer | ckelsel <ckelsel@hotmail.com> | 2017-09-24 12:49:16 +0800 |
commit | cd13c24427a3191c7383b76a0bf9467bee2736e3 (patch) | |
tree | 59451c6ee4c5f42500d6db549e923677fc0f5889 /src/nvim/options.lua | |
parent | d2eba872fb80ec9ace3a244aa706e55c82a48e83 (diff) | |
download | rneovim-cd13c24427a3191c7383b76a0bf9467bee2736e3.tar.gz rneovim-cd13c24427a3191c7383b76a0bf9467bee2736e3.tar.bz2 rneovim-cd13c24427a3191c7383b76a0bf9467bee2736e3.zip |
vim-patch:8.0.0102
Problem: Cannot set 'dictionary' to a path.
Solution: Allow for slash and backslash. Add a test (partly by Daisuke
Suzuki, closes vim/vim#1279, closes vim/vim#1284)
https://github.com/vim/vim/commit/7554da4033498c4da0af3cde542c3e87e9097b73
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 757fac9465..cce9e10409 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -7,7 +7,7 @@ -- enable_if=nil, -- defaults={condition=nil, if_true={vi=224, vim=0}, if_false=nil}, -- secure=nil, gettext=nil, noglob=nil, normal_fname_chars=nil, --- pri_mkrc=nil, deny_in_modelines=nil, +-- pri_mkrc=nil, deny_in_modelines=nil, normal_dname_chars=nil, -- expand=nil, nodefault=nil, no_mkrc=nil, vi_def=true, vim=true, -- alloced=nil, -- save_pv_indir=nil, @@ -575,7 +575,7 @@ return { full_name='dictionary', abbreviation='dict', type='string', list='onecomma', scope={'global', 'buffer'}, deny_duplicates=true, - normal_fname_chars=true, + normal_dname_chars=true, vi_def=true, expand=true, varname='p_dict', |