[Idle-dev] CVS: idle Bindings.py,1.10,1.11
Kurt B. Kaiser
kbk@users.sourceforge.net
Fri, 13 Sep 2002 17:50:46 -0700
Update of /cvsroot/idlefork/idle
In directory usw-pr-cvs1:/tmp/cvs-serv2244
Modified Files:
Bindings.py
Log Message:
Bindings.py
AutoIndent merged 21Jul
cleanup and remove references to config backend 06Aug
Index: Bindings.py
===================================================================
RCS file: /cvsroot/idlefork/idle/Bindings.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** Bindings.py 11 Jun 2002 04:45:32 -0000 1.10
--- Bindings.py 14 Sep 2002 00:50:44 -0000 1.11
***************
*** 6,19 ****
# Debug menu here, which is only present in the PythonShell window.
- # changes by dscherer@cmu.edu:
- # - Python shell moved to 'Run' menu
- # - "Help" renamed to "IDLE Help" to distinguish from Python help.
- # The distinction between the environment and the language is dim
- # or nonexistent in a novice's mind.
- # - Silly advice added
-
import sys
import string
- #from keydefs import *
from configHandler import idleConf
--- 6,11 ----
***************
*** 52,55 ****
--- 44,57 ----
('Go to _line', '<<goto-line>>'),
]),
+ ('format', [
+ ('_Indent region', '<<indent-region>>'),
+ ('_Dedent region', '<<dedent-region>>'),
+ ('Comment _out region', '<<comment-region>>'),
+ ('U_ncomment region', '<<uncomment-region>>'),
+ ('Tabify region', '<<tabify-region>>'),
+ ('Untabify region', '<<untabify-region>>'),
+ ('Toggle tabs', '<<toggle-tabs>>'),
+ ('New indent width', '<<change-indentwidth>>'),
+ ]),
('run',[
('Python shell', '<<open-python-shell>>'),