summaryrefslogtreecommitdiffstats
path: root/Doc/library/idle.rst
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-11-01 20:41:19 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-11-01 20:41:19 (GMT)
commitd183767ca4786c00d84e284ad6c89fa3c154bad2 (patch)
tree440aaee4761275b2cb3f2c169fa21da82377b6a5 /Doc/library/idle.rst
parent5bb420761fc72f9a58461ff2c294c82fe990f0fa (diff)
downloadcpython-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 'Doc/library/idle.rst')
-rw-r--r--Doc/library/idle.rst21
1 files changed, 21 insertions, 0 deletions
diff --git a/Doc/library/idle.rst b/Doc/library/idle.rst
index 5f28a99..b40e470 100644
--- a/Doc/library/idle.rst
+++ b/Doc/library/idle.rst
@@ -183,6 +183,15 @@ Edit context menu
* Right-click in Edit window (Control-click on OS X)
+Cut
+ Copy selection into system-wide clipboard; then delete selection
+
+Copy
+ Copy selection into system-wide clipboard
+
+Paste
+ Insert system-wide clipboard into window
+
Set Breakpoint
Sets a breakpoint. Breakpoints are only enabled when the debugger is open.
@@ -190,6 +199,9 @@ Clear Breakpoint
Clears the breakpoint on that line.
.. index::
+ single: Cut
+ single: Copy
+ single: Paste
single: Set Breakpoint
single: Clear Breakpoint
single: breakpoints
@@ -200,6 +212,15 @@ Shell context menu
* Right-click in Python Shell window (Control-click on OS X)
+Cut
+ Copy selection into system-wide clipboard; then delete selection
+
+Copy
+ Copy selection into system-wide clipboard
+
+Paste
+ Insert system-wide clipboard into window
+
Go to file/line
Same as in Debug menu.