diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-11-01 20:41:19 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-11-01 20:41:19 (GMT) |
commit | d183767ca4786c00d84e284ad6c89fa3c154bad2 (patch) | |
tree | 440aaee4761275b2cb3f2c169fa21da82377b6a5 /Lib/idlelib/help.txt | |
parent | 5bb420761fc72f9a58461ff2c294c82fe990f0fa (diff) | |
download | cpython-d183767ca4786c00d84e284ad6c89fa3c154bad2.zip cpython-d183767ca4786c00d84e284ad6c89fa3c154bad2.tar.gz cpython-d183767ca4786c00d84e284ad6c89fa3c154bad2.tar.bz2 |
Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu
Patch by Todd Rovito.
Diffstat (limited to 'Lib/idlelib/help.txt')
-rw-r--r-- | Lib/idlelib/help.txt | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/Lib/idlelib/help.txt b/Lib/idlelib/help.txt index c179555..815ee40 100644 --- a/Lib/idlelib/help.txt +++ b/Lib/idlelib/help.txt @@ -120,14 +120,23 @@ Help Menu: --- (Additional Help Sources may be added here) -Edit context menu (Right-click / Control-click in Edit window): +Edit context menu (Right-click / Control-click on OS X in Edit window): + Cut -- Copy a selection into system-wide clipboard, + then delete the selection + Copy -- Copy selection into system-wide clipboard + Paste -- Insert system-wide clipboard into window Set Breakpoint -- Sets a breakpoint (when debugger open) Clear Breakpoint -- Clears the breakpoint on that line -Shell context menu (Right-click / Control-click in Shell window): +Shell context menu (Right-click / Control-click on OS X in Shell window): - Go to file/line -- Same as in Debug menu + Cut -- Copy a selection into system-wide clipboard, + then delete the selection + Copy -- Copy selection into system-wide clipboard + Paste -- Insert system-wide clipboard into window + --- + Go to file/line -- Same as in Debug menu ** TIPS ** |