Merge pull request #647 from alexlafroscia/master

Allow Deoplete entries to show up with existing matches
This commit is contained in:
Stanislav Seletskiy 2016-01-25 09:47:10 +05:00
commit bdd9012eb5

View File

@ -15,6 +15,7 @@ class Source(Base):
for trigger in snippets:
suggestions.append({
'word': trigger,
'menu': self.mark + ' ' + snippets.get(trigger, '')
'menu': self.mark + ' ' + snippets.get(trigger, ''),
'dup': 1
})
return suggestions