Improve deoplete source performance

This commit is contained in:
Shougo Matsushita 2016-06-20 20:17:36 +09:00
parent 23eac4b080
commit aa37cd0fbe
1 changed files with 8 additions and 6 deletions

View File

@ -33,14 +33,16 @@ class Source(Base):
self.name = 'neosnippet'
self.mark = '[ns]'
self.rank = 200
self.__cache = {}
def gather_candidates(self, context):
return self.vim.eval(
def on_event(self, context):
self.__cache[context['filetype']] = self.vim.eval(
'values(neosnippet#helpers#get_completion_snippets())')
def on_post_filter(self, context):
for candidate in context['candidates']:
for candidate in self.__cache[context['filetype']]:
candidate['dup'] = 1
candidate['menu'] = candidate['menu_abbr']
return context['candidates']
def gather_candidates(self, context):
if not self.__cache:
self.on_event(context)
return self.__cache.get(context['filetype'], [])