Files
neovim/test/functional/fixtures/autoload/provider/python.vim
Justin M. Keyes 5e6a08f2e6 provider: skip non-provider has() feature-names
We don't want to retry autoload sourcing (slow) for every random has()
query that finds it way to eval_call_provider().
2019-08-04 13:23:46 +02:00

7 lines
169 B
VimL

" Dummy test provider, missing this required variable:
" let g:loaded_brokenenabled_provider = 0
function! provider#python#Call(method, args)
return 42
endfunction