523 self.setAutoCompletionCaseSensitivity( |
523 self.setAutoCompletionCaseSensitivity( |
524 Preferences.getEditor("AutoCompletionCaseSensitivity")) |
524 Preferences.getEditor("AutoCompletionCaseSensitivity")) |
525 self.setAutoCompletionThreshold(-1) |
525 self.setAutoCompletionThreshold(-1) |
526 |
526 |
527 self.racEnabled = Preferences.getShell("AutoCompletionEnabled") |
527 self.racEnabled = Preferences.getShell("AutoCompletionEnabled") |
|
528 |
|
529 self.maxLines = Preferences.getEditor("AutoCompletionMaxLines") |
|
530 self.maxChars = Preferences.getEditor("AutoCompletionMaxChars") |
528 |
531 |
529 def __setCallTips(self, language='Python'): |
532 def __setCallTips(self, language='Python'): |
530 """ |
533 """ |
531 Private method to configure the calltips function. |
534 Private method to configure the calltips function. |
532 |
535 |