AssistantEric/Assistant.py

branch
eric7
changeset 189
c0d638327085
parent 186
c228779ea15d
child 190
3104a5a3ea13
equal deleted inserted replaced
188:7bc3332b65f9 189:c0d638327085
816 816
817 if self.__plugin.getPreferences("AutoCompletionSource") & AcsDocument: 817 if self.__plugin.getPreferences("AutoCompletionSource") & AcsDocument:
818 documentCalltips = self.__getDocumentCalltips( 818 documentCalltips = self.__getDocumentCalltips(
819 word, prefix, mod, editor) 819 word, prefix, mod, editor)
820 820
821 return list(sorted( 821 return sorted(
822 set(apiCalltips) 822 set(apiCalltips)
823 .union(set(projectCalltips)) 823 .union(set(projectCalltips))
824 .union(set(documentCalltips)) 824 .union(set(documentCalltips))
825 )) 825 )
826 826
827 def __getApiCalltips(self, api, word, commas, prefix, module, editor): 827 def __getApiCalltips(self, api, word, commas, prefix, module, editor):
828 """ 828 """
829 Private method to determine calltips from APIs. 829 Private method to determine calltips from APIs.
830 830

eric ide

mercurial