569 Preferences.getEditor("AutoCompletionCaseSensitivity")) |
569 Preferences.getEditor("AutoCompletionCaseSensitivity")) |
570 self.setAutoCompletionThreshold(-1) |
570 self.setAutoCompletionThreshold(-1) |
571 |
571 |
572 self.racEnabled = Preferences.getShell("AutoCompletionEnabled") |
572 self.racEnabled = Preferences.getShell("AutoCompletionEnabled") |
573 |
573 |
574 self.maxLines = Preferences.getEditor("AutoCompletionMaxLines") |
574 self.setAutoCompletionWidgetSize( |
575 self.maxChars = Preferences.getEditor("AutoCompletionMaxChars") |
575 Preferences.getEditor("AutoCompletionMaxChars"), |
|
576 Preferences.getEditor("AutoCompletionMaxLines") |
|
577 ) |
576 |
578 |
577 def __setCallTips(self, language='Python'): |
579 def __setCallTips(self, language='Python'): |
578 """ |
580 """ |
579 Private method to configure the calltips function. |
581 Private method to configure the calltips function. |
580 |
582 |