]> granicus.if.org Git - python/commitdiff
MERGE DS_RPC_BRANCH into MAIN
authorKurt B. Kaiser <kbk@shore.net>
Sat, 14 Sep 2002 03:17:01 +0000 (03:17 +0000)
committerKurt B. Kaiser <kbk@shore.net>
Sat, 14 Sep 2002 03:17:01 +0000 (03:17 +0000)
configHandler.py
    AutoIndent merged 21Jul

Lib/idlelib/configHandler.py

index 1afd19ef3b0d24e45d3685ea80f94cff94a96ae5..2dd46e2e66c70654dbc39feda0afa6a077b13381 100644 (file)
@@ -521,7 +521,19 @@ class IdleConf:
             '<<find-selection>>': ['<Control-F3>'],
             '<<find>>': ['<Control-f>'],
             '<<replace>>': ['<Control-h>'],
-            '<<goto-line>>': ['<Alt-g>'] }
+            '<<goto-line>>': ['<Alt-g>'], 
+            '<<smart-backspace>>': ['<Key-BackSpace>'],
+            '<<newline-and-indent>>': ['<Key-Return> <Key-KP_Enter>'],
+            '<<smart-indent>>': ['<Key-Tab>'],
+            '<<indent-region>>': ['<Control-Key-bracketright>'],
+            '<<dedent-region>>': ['<Control-Key-bracketleft>'],
+            '<<comment-region>>': ['<Alt-Key-3>'],
+            '<<uncomment-region>>': ['<Alt-Key-4>'],
+            '<<tabify-region>>': ['<Alt-Key-5>'],
+            '<<untabify-region>>': ['<Alt-Key-6>'],
+            '<<toggle-tabs>>': ['<Alt-Key-t>'],
+            '<<change-indentwidth>>': ['<Alt-Key-u>']
+            }
         if keySetName:
             for event in keyBindings.keys():
                 binding=self.GetKeyBinding(keySetName,event)