1
0
forked from VimPlug/jedi

ignore duplicates of completion outputs, #97

This commit is contained in:
David Halter
2012-12-29 01:59:34 +01:00
parent b04e74ca7d
commit 406233b62d
3 changed files with 15 additions and 1 deletions

View File

@@ -163,6 +163,10 @@ class Completion(BaseDefinition):
self.like_name_length = like_name_length
self.base = base
# Completion objects with the same Completion name (which means
# duplicate items in the completion)
self.same_name_completions = []
self._followed_definitions = None
@property