diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-04 12:06:24 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-04 13:23:46 +0200 |
commit | 241956720d02d933b0b27097a3b0a1966f138d0b (patch) | |
tree | 374bba71e8dd780fb7f89bd37ab28bbe5752c55e /test | |
parent | 66938b928c05b913f3a11e520d13ca854621799d (diff) | |
download | rneovim-241956720d02d933b0b27097a3b0a1966f138d0b.tar.gz rneovim-241956720d02d933b0b27097a3b0a1966f138d0b.tar.bz2 rneovim-241956720d02d933b0b27097a3b0a1966f138d0b.zip |
provider: g:loaded_xx_provider=2 means "enabled and working"
Value of 1 cannot be used, because users might set that in their vimrc
to _disable_ a provider, which would confuse :checkhealth and has().
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/fixtures/autoload/provider/brokencall.vim | 2 | ||||
-rw-r--r-- | test/functional/fixtures/autoload/provider/clipboard.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/fixtures/autoload/provider/brokencall.vim b/test/functional/fixtures/autoload/provider/brokencall.vim index 7dc5d828d2..cad2b2a640 100644 --- a/test/functional/fixtures/autoload/provider/brokencall.vim +++ b/test/functional/fixtures/autoload/provider/brokencall.vim @@ -1,2 +1,2 @@ " A dummy test provider -let g:loaded_brokencall_provider = 1 +let g:loaded_brokencall_provider = 2 diff --git a/test/functional/fixtures/autoload/provider/clipboard.vim b/test/functional/fixtures/autoload/provider/clipboard.vim index efa9f82bd4..41e486b745 100644 --- a/test/functional/fixtures/autoload/provider/clipboard.vim +++ b/test/functional/fixtures/autoload/provider/clipboard.vim @@ -1,4 +1,4 @@ -let g:loaded_clipboard_provider = 1 +let g:loaded_clipboard_provider = 2 let g:test_clip = { '+': [''], '*': [''], } |