Hi,
I have a problem with tag source for my Ruby files - deoplete only display suggestions from buffers.
Here are my deoplete settings. I generated ctags using universal-ctags. I know they are working because when I type g <c-[> vim correctly opens the file.
let g:deoplete#enable_at_startup = 1
let g:deoplete#sources = {}
let g:deoplete#sources._ = ['buffer', 'tag']
I would expect to see suggestions based on the ctags file as well.
You probably need to increase the size limit on deoplete#tag#cache_limit_size. The default is 500000 which is ~500KiB. Add another zero to it to make it ~5MiB:
let deoplete#tag#cache_limit_size = 5000000
Thanks @tweekmonster - that was it.
Problem solved, can be closed.
I've created PR to include that in the README #311
Most helpful comment
You probably need to increase the size limit on
deoplete#tag#cache_limit_size. The default is500000which is ~500KiB. Add another zero to it to make it ~5MiB: