diff options
Diffstat (limited to 'Lib/idlelib/config.py')
-rw-r--r-- | Lib/idlelib/config.py | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/Lib/idlelib/config.py b/Lib/idlelib/config.py index 63d9a44234..c3e57bc692 100644 --- a/Lib/idlelib/config.py +++ b/Lib/idlelib/config.py @@ -359,7 +359,8 @@ class IdleConf: 'stderr-foreground':'#000000', 'stderr-background':'#ffffff', 'console-foreground':'#000000', - 'console-background':'#ffffff' } + 'console-background':'#ffffff', + } for element in theme: if not cfgParser.has_option(themeName, element): # Print warning that will return a default color @@ -443,6 +444,11 @@ class IdleConf: for extn in userExtns: if extn not in extns: #user has added own extension extns.append(extn) + for extn in ('AutoComplete','CodeContext', + 'FormatParagraph','ParenMatch'): + extns.remove(extn) + # specific exclusions because we are storing config for mainlined old + # extensions in config-extensions.def for backward compatibility if active_only: activeExtns = [] for extn in extns: @@ -594,7 +600,12 @@ class IdleConf: return ('<<'+virtualEvent+'>>') in self.GetCoreKeys() # TODO make keyBindins a file or class attribute used for test above -# and copied in function below +# and copied in function below. + + former_extension_events = { # Those with user-configurable keys. + '<<force-open-completions>>', '<<expand-word>>', + '<<force-open-calltip>>', '<<flash-paren>>', '<<format-paragraph>>', + '<<run-module>>', '<<check-module>>', '<<zoom-height>>'} def GetCoreKeys(self, keySetName=None): """Return dict of core virtual-key keybindings for keySetName. @@ -654,8 +665,17 @@ class IdleConf: '<<toggle-tabs>>': ['<Alt-Key-t>'], '<<change-indentwidth>>': ['<Alt-Key-u>'], '<<del-word-left>>': ['<Control-Key-BackSpace>'], - '<<del-word-right>>': ['<Control-Key-Delete>'] + '<<del-word-right>>': ['<Control-Key-Delete>'], + '<<force-open-completions>>': ['<Control-Key-space>'], + '<<expand-word>>': ['<Alt-Key-slash>'], + '<<force-open-calltip>>': ['<Control-Key-backslash>'], + '<<flash-paren>>': ['<Control-Key-0>'], + '<<format-paragraph>>': ['<Alt-Key-q>'], + '<<run-module>>': ['<Key-F5>'], + '<<check-module>>': ['<Alt-Key-x>'], + '<<zoom-height>>': ['<Alt-Key-2>'], } + if keySetName: if not (self.userCfg['keys'].has_section(keySetName) or self.defaultCfg['keys'].has_section(keySetName)): @@ -670,7 +690,8 @@ class IdleConf: binding = self.GetKeyBinding(keySetName, event) if binding: keyBindings[event] = binding - else: #we are going to return a default, print warning + # Otherwise return default in keyBindings. + elif event not in self.former_extension_events: warning = ( '\n Warning: config.py - IdleConf.GetCoreKeys -\n' ' problem retrieving key binding for event %r\n' |