Once I start typing the name of the header (e.g. stdio.h) deoplete throws the following errors:
[deoplete] Traceback (most recent call last):
[deoplete] File "/Users/hiphish/.local/share/nvim/site-packages/deoplete.nvim/rplugin/python3/deoplete/deoplete.py", line 116, in gather_results
[deoplete] ctx['candidates'] = convert2candidates(ctx['candidates'])
[deoplete] File "/Users/hiphish/.local/share/nvim/site-packages/deoplete.nvim/rplugin/python3/deoplete/util.py", line 51, in convert2candidates
[deoplete] return [{'word': x} for x in l] if l and isinstance(l[0], str) else l
[deoplete] TypeError: 'generator' object is not subscriptable
[deoplete] Could not get completions from: clang2. Use :messages for error details.
Here are the steps:
touch derp.c
)nvim derp.c
)#include <
stdio.h
) deoplete throws the following errors:This happens every time. Any idea?