mirror of
https://github.com/python/cpython.git
synced 2025-11-02 14:41:33 +00:00
bpo-28097: IDLE - Add Previous/Next History to Shell menu (#11325)
This commit is contained in:
parent
804a5d94b6
commit
c0381aaea4
4 changed files with 22 additions and 10 deletions
|
|
@ -235,6 +235,12 @@ View Last Restart
|
||||||
Restart Shell
|
Restart Shell
|
||||||
Restart the shell to clean the environment.
|
Restart the shell to clean the environment.
|
||||||
|
|
||||||
|
Previous History
|
||||||
|
Cycle through earlier commands in history which match the current entry.
|
||||||
|
|
||||||
|
Next History
|
||||||
|
Cycle through later commands in history which match the current entry.
|
||||||
|
|
||||||
Interrupt Execution
|
Interrupt Execution
|
||||||
Stop a running program.
|
Stop a running program.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -273,6 +273,10 @@ <h3>Shell menu (Shell window only)<a class="headerlink" href="#shell-menu-shell-
|
||||||
<dd>Scroll the shell window to the last Shell restart.</dd>
|
<dd>Scroll the shell window to the last Shell restart.</dd>
|
||||||
<dt>Restart Shell</dt>
|
<dt>Restart Shell</dt>
|
||||||
<dd>Restart the shell to clean the environment.</dd>
|
<dd>Restart the shell to clean the environment.</dd>
|
||||||
|
<dt>Previous History</dt>
|
||||||
|
<dd>Cycle through earlier commands in history which match the current entry.</dd>
|
||||||
|
<dt>Next History</dt>
|
||||||
|
<dd>Cycle through later commands in history which match the current entry.</dd>
|
||||||
<dt>Interrupt Execution</dt>
|
<dt>Interrupt Execution</dt>
|
||||||
<dd>Stop a running program.</dd>
|
<dd>Stop a running program.</dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
@ -309,7 +313,11 @@ <h3>Options menu (Shell and Editor)<a class="headerlink" href="#options-menu-she
|
||||||
configuration dialog by selecting Preferences in the application
|
configuration dialog by selecting Preferences in the application
|
||||||
menu. For more, see
|
menu. For more, see
|
||||||
<a class="reference internal" href="#preferences"><span class="std std-ref">Setting preferences</span></a> under Help and preferences.</dd>
|
<a class="reference internal" href="#preferences"><span class="std std-ref">Setting preferences</span></a> under Help and preferences.</dd>
|
||||||
<dt>Code Context (toggle)(Editor Window only)</dt>
|
<dt>Zoom/Restore Height</dt>
|
||||||
|
<dd>Toggles the window between normal size and maximum height. The initial size
|
||||||
|
defaults to 40 lines by 80 chars unless changed on the General tab of the
|
||||||
|
Configure IDLE dialog.</dd>
|
||||||
|
<dt>Show/Hide Code Context (Editor Window only)</dt>
|
||||||
<dd>Open a pane at the top of the edit window which shows the block context
|
<dd>Open a pane at the top of the edit window which shows the block context
|
||||||
of the code which has scrolled above the top of the window. See
|
of the code which has scrolled above the top of the window. See
|
||||||
<a class="reference internal" href="#code-context"><span class="std std-ref">Code Context</span></a> in the Editing and Navigation section below.</dd>
|
<a class="reference internal" href="#code-context"><span class="std std-ref">Code Context</span></a> in the Editing and Navigation section below.</dd>
|
||||||
|
|
@ -317,14 +325,8 @@ <h3>Options menu (Shell and Editor)<a class="headerlink" href="#options-menu-she
|
||||||
</div>
|
</div>
|
||||||
<div class="section" id="window-menu-shell-and-editor">
|
<div class="section" id="window-menu-shell-and-editor">
|
||||||
<h3>Window menu (Shell and Editor)<a class="headerlink" href="#window-menu-shell-and-editor" title="Permalink to this headline">¶</a></h3>
|
<h3>Window menu (Shell and Editor)<a class="headerlink" href="#window-menu-shell-and-editor" title="Permalink to this headline">¶</a></h3>
|
||||||
<dl class="docutils">
|
<p>Lists the names of all open windows; select one to bring it to the foreground
|
||||||
<dt>Zoom Height</dt>
|
(deiconifying it if necessary).</p>
|
||||||
<dd>Toggles the window between normal size and maximum height. The initial size
|
|
||||||
defaults to 40 lines by 80 chars unless changed on the General tab of the
|
|
||||||
Configure IDLE dialog.</dd>
|
|
||||||
</dl>
|
|
||||||
<p>The rest of this menu lists the names of all open windows; select one to bring
|
|
||||||
it to the foreground (deiconifying it if necessary).</p>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="section" id="help-menu-shell-and-editor">
|
<div class="section" id="help-menu-shell-and-editor">
|
||||||
<h3>Help menu (Shell and Editor)<a class="headerlink" href="#help-menu-shell-and-editor" title="Permalink to this headline">¶</a></h3>
|
<h3>Help menu (Shell and Editor)<a class="headerlink" href="#help-menu-shell-and-editor" title="Permalink to this headline">¶</a></h3>
|
||||||
|
|
@ -918,7 +920,7 @@ <h3>Navigation</h3>
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
Last updated on Dec 20, 2018.
|
Last updated on Dec 28, 2018.
|
||||||
<a href="https://docs.python.org/3/bugs.html">Found a bug</a>?
|
<a href="https://docs.python.org/3/bugs.html">Found a bug</a>?
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -82,6 +82,9 @@
|
||||||
('_View Last Restart', '<<view-restart>>'),
|
('_View Last Restart', '<<view-restart>>'),
|
||||||
('_Restart Shell', '<<restart-shell>>'),
|
('_Restart Shell', '<<restart-shell>>'),
|
||||||
None,
|
None,
|
||||||
|
('_Previous History', '<<history-previous>>'),
|
||||||
|
('_Next History', '<<history-next>>'),
|
||||||
|
None,
|
||||||
('_Interrupt Execution', '<<interrupt-execution>>'),
|
('_Interrupt Execution', '<<interrupt-execution>>'),
|
||||||
]),
|
]),
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Add Previous/Next History entries to Shell menu.
|
||||||
Loading…
Add table
Add a link
Reference in a new issue