[Python-checkins] r65049 - in sandbox/trunk/ttk-gsoc/src/idlelib: Bindings.py config-keys.def configHandler.py

guilherme.polo python-checkins at python.org
Thu Jul 17 03:23:59 CEST 2008


Author: guilherme.polo
Date: Thu Jul 17 03:23:58 2008
New Revision: 65049

Log:
Changed open-new-tab to just new-tab

Modified:
   sandbox/trunk/ttk-gsoc/src/idlelib/Bindings.py
   sandbox/trunk/ttk-gsoc/src/idlelib/config-keys.def
   sandbox/trunk/ttk-gsoc/src/idlelib/configHandler.py

Modified: sandbox/trunk/ttk-gsoc/src/idlelib/Bindings.py
==============================================================================
--- sandbox/trunk/ttk-gsoc/src/idlelib/Bindings.py	(original)
+++ sandbox/trunk/ttk-gsoc/src/idlelib/Bindings.py	Thu Jul 17 03:23:58 2008
@@ -15,7 +15,7 @@
  # underscore prefixes character to underscore
  ('file', [
    ('_New Window', '<<open-new-window>>'),
-   ('New _Tab', '<<open-new-tab>>'),
+   ('New _Tab', '<<new-tab>>'),
    ('_Open...', '<<open-window-from-file>>'),
    ('Open _Module...', '<<open-module>>'),
    ('Class _Browser', '<<open-class-browser>>'),

Modified: sandbox/trunk/ttk-gsoc/src/idlelib/config-keys.def
==============================================================================
--- sandbox/trunk/ttk-gsoc/src/idlelib/config-keys.def	(original)
+++ sandbox/trunk/ttk-gsoc/src/idlelib/config-keys.def	Thu Jul 17 03:23:58 2008
@@ -28,7 +28,7 @@
 open-class-browser=<Alt-Key-c> <Meta-Key-c> <Alt-Key-C>
 open-module=<Alt-Key-m> <Meta-Key-m> <Alt-Key-M>
 open-new-window=<Control-Key-n> <Control-Key-N>
-open-new-tab=<Control-Key-t> <Control-Key-T>
+new-tab=<Control-Key-t> <Control-Key-T>
 open-window-from-file=<Control-Key-o> <Control-Key-O>
 plain-newline-and-indent=<Control-Key-j> <Control-Key-J>
 print-window=<Control-Key-p> <Control-Key-P>
@@ -79,7 +79,7 @@
 open-class-browser=<Control-Key-x><Control-Key-b>
 open-module=<Control-Key-x><Control-Key-m>
 open-new-window=<Control-Key-x><Control-Key-n>
-open-new-tab=<Alt-Key-t><Control-Key-t>
+new-tab=<Alt-Key-t><Control-Key-t>
 open-window-from-file=<Control-Key-x><Control-Key-f>
 plain-newline-and-indent=<Control-Key-j>
 print-window=<Control-x><Control-Key-p>
@@ -134,7 +134,7 @@
 open-class-browser=<Command-Key-b>
 open-module=<Command-Key-m>
 open-new-window=<Command-Key-n>
-open-new-tab=<Control-Key-t>
+new-tab=<Control-Key-t>
 open-window-from-file=<Command-Key-o>
 plain-newline-and-indent=<Control-Key-j>
 print-window=<Command-Key-p>
@@ -212,7 +212,7 @@
 end-of-file = <Control-Key-d>
 open-class-browser = <Command-Key-b>
 open-new-window = <Command-Key-n>
-open-new-tab = <Control-Key-t>
+new-tab = <Control-Key-t>
 open-module = <Command-Key-m>
 find-selection = <Shift-Command-Key-F3>
 python-context-help = <Shift-Key-F1>

Modified: sandbox/trunk/ttk-gsoc/src/idlelib/configHandler.py
==============================================================================
--- sandbox/trunk/ttk-gsoc/src/idlelib/configHandler.py	(original)
+++ sandbox/trunk/ttk-gsoc/src/idlelib/configHandler.py	Thu Jul 17 03:23:58 2008
@@ -578,7 +578,7 @@
             '<<open-class-browser>>': ['<Alt-c>'],
             '<<open-module>>': ['<Alt-m>'],
             '<<open-new-window>>': ['<Control-n>'],
-            '<<open-new-tab>>': ['<Control-t>'],
+            '<<new-tab>>': ['<Control-t>'],
             '<<open-window-from-file>>': ['<Control-o>'],
             '<<plain-newline-and-indent>>': ['<Control-j>'],
             '<<print-window>>': ['<Control-p>'],


More information about the Python-checkins mailing list