displaytext and description swapped

This commit is contained in:
Chiel92 2013-06-07 11:45:36 +02:00
parent 7d7349142c
commit a6424c22d8

View File

@ -43,8 +43,8 @@ class CsharpCompleter( ThreadedCompleter ):
def ComputeCandidates( self, unused_query, unused_start_column ):
return [ { 'word': str( completion['CompletionText'] ),
'menu': str( completion['Description'] ),
'info': str( completion['DisplayText'] ) }
'menu': str( completion['DisplayText'] ),
'info': str( completion['Description'] ) }
for completion in self.getCompletions() ]
def getCompletions( self ):