summaryrefslogtreecommitdiff
path: root/Lib/idlelib/Bindings.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2003-01-04 01:43:53 +0000
committerKurt B. Kaiser <kbk@shore.net>2003-01-04 01:43:53 +0000
commit41383f7f047b9b572458494968e04abc3d03e071 (patch)
tree1b5f12d5444f6297700990a41a9eb886b04554d3 /Lib/idlelib/Bindings.py
parentd35783d96333e6c2b3e2fad9008c0e26da9bcc77 (diff)
downloadcpython-41383f7f047b9b572458494968e04abc3d03e071.tar.gz
M AutoExpand.py
M Bindings.py M EditorWindow.py M PyShell.py M config-keys.def M configHandler.py M help.txt 1. Annotate the shell window with last restart boundary upon restart. 2. Provide a shell menu entry and hot key (F6) to jump to the last restart boundary. 3. Add a new shell menu feature to restart the shell. 4. Update the help menu to add these features. 5. Update the help menu to put text in same order as the menus. 6. Correct a capitalization inconsistency on the Edit menu: Expand Word 7. Rename the "Debug" menu to be "Shell": it's doing more now. 8. Rearrange the "Shell" menu to make the StackViewer entries adjacent. 9. Add a get_geometry method to EditorWindow, which may be of use in making window positions persisent. 10. Make <ctrl-v> the "Classic Windows" paste key. 11. Restore decorum on the Help menu by removing "Advice". As Guido said, things will never be the same. Thanks, David!
Diffstat (limited to 'Lib/idlelib/Bindings.py')
-rw-r--r--Lib/idlelib/Bindings.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/Lib/idlelib/Bindings.py b/Lib/idlelib/Bindings.py
index ee81bac7fb..b177a5ed45 100644
--- a/Lib/idlelib/Bindings.py
+++ b/Lib/idlelib/Bindings.py
@@ -55,13 +55,16 @@ menudefs = [
('run',[
('Python Shell', '<<open-python-shell>>'),
]),
- ('debug', [
+ ('shell', [
+ ('_View Last Restart', '<<view-restart>>'),
+ ('_Restart Shell', '<<restart-shell>>'),
+ None,
('_Go to File/Line', '<<goto-file-line>>'),
- ('_Stack Viewer', '<<open-stack-viewer>>'),
('!_Debugger', '<<toggle-debugger>>'),
+ ('_Stack Viewer', '<<open-stack-viewer>>'),
('!_Auto-open Stack Viewer', '<<toggle-jit-stack-viewer>>' ),
]),
- ('settings', [
+ ('options', [
('_Configure Idle...', '<<open-config-dialog>>'),
None,
('Revert to _Default Settings', '<<revert-all-settings>>'),
@@ -69,7 +72,6 @@ menudefs = [
('help', [
('_IDLE Help...', '<<help>>'),
('Python _Documentation...', '<<python-docs>>'),
- ('_Advice...', '<<good-advice>>'),
('View IDLE _Readme...', '<<view-readme>>'),
None,
('_About IDLE...', '<<about-idle>>'),