QScintilla/Editor.py

changeset 5919
d0de2b378b24
parent 5916
26a37798aa75
child 5932
af9aa23e12ec
equal deleted inserted replaced
5918:d89cd224dd1b 5919:d0de2b378b24
5002 and calltips handling __charAdded() slot. 5002 and calltips handling __charAdded() slot.
5003 5003
5004 @param charNumber value of the character entered (integer) 5004 @param charNumber value of the character entered (integer)
5005 """ 5005 """
5006 char = chr(charNumber) 5006 char = chr(charNumber)
5007 if char == "(" and Preferences.getEditor("ShowInfoOnOpenParenthesis"): 5007 if char == "(" and \
5008 Preferences.getDocuViewer("ShowInfoOnOpenParenthesis"):
5008 self.vm.showEditorInfo(self) 5009 self.vm.showEditorInfo(self)
5009 5010
5010 def __showCodeInfo(self): 5011 def __showCodeInfo(self):
5011 """ 5012 """
5012 Private slot to handle the context menu action to show code info. 5013 Private slot to handle the context menu action to show code info.

eric ide

mercurial