[Idle-dev] CVS: idle EditorWindow.py,1.28,1.29
Kurt B. Kaiser
kbk@users.sourceforge.net
Fri, 13 Sep 2002 19:40:19 -0700
Update of /cvsroot/idlefork/idle
In directory usw-pr-cvs1:/tmp/cvs-serv22406
Modified Files:
EditorWindow.py
Log Message:
MERGE DS_RPC_BRANCH into MAIN
EditorWindow.py
don't track Py Idle patch 543222 - disable script bindings in shell
since it was done differently in MAIN
Remove "binding comments" 05 Aug 1.23.2.3 to 1.23.2.4
Remove last dependencies to old config backend 06Aug to 1.23.2.5
Index: EditorWindow.py
===================================================================
RCS file: /cvsroot/idlefork/idle/EditorWindow.py,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -r1.28 -r1.29
*** EditorWindow.py 14 Sep 2002 02:34:23 -0000 1.28
--- EditorWindow.py 14 Sep 2002 02:40:17 -0000 1.29
***************
*** 15,19 ****
import ReplaceDialog
import PyParse
- #from IdleConf import idleconf
from configHandler import idleConf
import aboutDialog, textView, configDialog
--- 15,18 ----
***************
*** 21,80 ****
# The default tab setting for a Text widget, in average-width characters.
TK_TABWIDTH_DEFAULT = 8
-
- # File menu
-
- #$ event <<open-module>>
- #$ win <Alt-m>
- #$ unix <Control-x><Control-m>
-
- #$ event <<open-class-browser>>
- #$ win <Alt-c>
- #$ unix <Control-x><Control-b>
-
- #$ event <<open-path-browser>>
-
- #$ event <<close-window>>
-
- #$ unix <Control-x><Control-0>
- #$ unix <Control-x><Key-0>
- #$ win <Alt-F4>
-
- # Edit menu
-
- #$ event <<Copy>>
- #$ win <Control-c>
- #$ unix <Alt-w>
-
- #$ event <<Cut>>
- #$ win <Control-x>
- #$ unix <Control-w>
-
- #$ event <<Paste>>
- #$ win <Control-v>
- #$ unix <Control-y>
-
- #$ event <<select-all>>
- #$ win <Alt-a>
- #$ unix <Alt-a>
-
- # Help menu
-
- #$ event <<help>>
- #$ win <F1>
- #$ unix <F1>
-
- #$ event <<about-idle>>
-
- # Events without menu entries
-
- #$ event <<remove-selection>>
- #$ win <Escape>
-
- #$ event <<center-insert>>
- #$ win <Control-l>
- #$ unix <Control-l>
-
- #$ event <<do-nothing>>
- #$ unix <Control-x>
class EditorWindow:
--- 20,23 ----