--- a/QScintilla/Editor.py Sun Nov 19 14:43:20 2017 +0100 +++ b/QScintilla/Editor.py Sun Nov 19 19:14:51 2017 +0100 @@ -4578,7 +4578,6 @@ ## auto-completion hook interfaces ################################################################# - # TODO: document this hook in chapter 6.2 of plug-in document def addCompletionListHook(self, key, func, async=False): """ Public method to set an auto-completion list provider. @@ -4617,7 +4616,6 @@ else: self.__completionListHookFunctions[key] = func - # TODO: document this hook in chapter 6.2 of plug-in document def removeCompletionListHook(self, key): """ Public method to remove a previously registered completion list @@ -4638,7 +4636,6 @@ self.setAutoCompletionThreshold( Preferences.getEditor("AutoCompletionThreshold")) - # TODO: document this hook in chapter 6.2 of plug-in document def getCompletionListHook(self, key): """ Public method to get the registered completion list provider. @@ -4721,7 +4718,6 @@ if Preferences.getEditor("AutoCompletionScintillaOnFail"): self.__acWatchdog.start() - # TODO: document this hook in chapter 6.2 of plug-in document def completionsListReady(self, completions, acText): """ Public method to show the completions determined by a completions @@ -4841,7 +4837,6 @@ ## call-tip hook interfaces ################################################################# - # TODO: document this hook in chapter 6.2 of plug-in document def addCallTipHook(self, key, func): """ Public method to set a calltip provider. @@ -4867,7 +4862,6 @@ self.__ctHookFunctions[key] = func - # TODO: document this hook in chapter 6.2 of plug-in document def removeCallTipHook(self, key): """ Public method to remove a previously registered calltip provider. @@ -4878,7 +4872,6 @@ if key in self.__ctHookFunctions: del self.__ctHookFunctions[key] - # TODO: document this hook in chapter 6.2 of plug-in document def getCallTipHook(self, key): """ Public method to get the registered calltip provider.