Deoplete.nvim: Suggestions from ctags don't appear

Created on 17 Jul 2016  路  3Comments  路  Source: Shougo/deoplete.nvim

Problems summary

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']

Expected

I would expect to see suggestions based on the ctags file as well.

Environment Information

  • OS: OS X
  • Neoivm: 0.1.4

Most helpful comment

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

All 3 comments

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

Was this page helpful?
0 / 5 - 0 ratings

Related issues

rafi picture rafi  路  4Comments

tomspeak picture tomspeak  路  5Comments

robgrzel picture robgrzel  路  6Comments

tchia04 picture tchia04  路  3Comments

Zundrium picture Zundrium  路  6Comments