You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -237,13 +238,13 @@ <h3>File menu (Shell and Editor)<a class="headerlink" href="#file-menu-shell-and
237
238
</dd>
238
239
<dt>Open…</dt><dd><p>Open an existing file with an Open dialog.</p>
239
240
</dd>
240
-
<dt>Recent Files</dt><dd><p>Open a list of recent files. Click one to open it.</p>
241
-
</dd>
242
241
<dt>Open Module…</dt><dd><p>Open an existing module (searches sys.path).</p>
243
242
</dd>
243
+
<dt>Recent Files</dt><dd><p>Open a list of recent files. Click one to open it.</p>
244
+
</dd>
244
245
</dl>
245
246
<dlclass="simple" id="index-1">
246
-
<dt>Class Browser</dt><dd><p>Show functions, classes, and methods in the current Editor file in a
247
+
<dt>Module Browser</dt><dd><p>Show functions, classes, and methods in the current Editor file in a
247
248
tree structure. In the shell, open a module first.</p>
248
249
</dd>
249
250
<dt>Path Browser</dt><dd><p>Show sys.path directories, modules, functions, classes and methods in a
@@ -255,10 +256,13 @@ <h3>File menu (Shell and Editor)<a class="headerlink" href="#file-menu-shell-and
255
256
do Save As instead.</p>
256
257
</dd>
257
258
<dt>Save As…</dt><dd><p>Save the current window with a Save As dialog. The file saved becomes the
258
-
new associated file for the window.</p>
259
+
new associated file for the window. (If your file namager is set to hide
260
+
extensions, the current extension will be omitted in the file name box.
261
+
If the new filename has no ‘.’, ‘.py’ and ‘.txt’ will be added for Python
262
+
and text files, except that on macOS Aqua,’.py’ is added for all files.)</p>
259
263
</dd>
260
264
<dt>Save Copy As…</dt><dd><p>Save the current window to different file without changing the associated
261
-
file.</p>
265
+
file. (See Save As note above about filename extensions.)</p>
262
266
</dd>
263
267
<dt>Print Window</dt><dd><p>Print the current window to the default printer.</p>
264
268
</dd>
@@ -278,6 +282,8 @@ <h3>Edit menu (Shell and Editor)<a class="headerlink" href="#edit-menu-shell-and
278
282
</dd>
279
283
<dt>Redo</dt><dd><p>Redo the last undone change to the current window.</p>
280
284
</dd>
285
+
<dt>Select All</dt><dd><p>Select the entire contents of the current window.</p>
286
+
</dd>
281
287
<dt>Cut</dt><dd><p>Copy selection into the system-wide clipboard; then delete the selection.</p>
282
288
</dd>
283
289
<dt>Copy</dt><dd><p>Copy selection into the system-wide clipboard.</p>
@@ -287,8 +293,6 @@ <h3>Edit menu (Shell and Editor)<a class="headerlink" href="#edit-menu-shell-and
287
293
</dl>
288
294
<p>The clipboard functions are also available in context menus.</p>
289
295
<dlclass="simple">
290
-
<dt>Select All</dt><dd><p>Select the entire contents of the current window.</p>
291
-
</dd>
292
296
<dt>Find…</dt><dd><p>Open a search dialog with many options</p>
293
297
</dd>
294
298
<dt>Find Again</dt><dd><p>Repeat the last search, if there is one.</p>
@@ -309,17 +313,21 @@ <h3>Edit menu (Shell and Editor)<a class="headerlink" href="#edit-menu-shell-and
309
313
<dt>Expand Word</dt><dd><p>Expand a prefix you have typed to match a full word in the same window;
310
314
repeat to get a different expansion.</p>
311
315
</dd>
312
-
<dt>Show call tip</dt><dd><p>After an unclosed parenthesis for a function, open a small window with
316
+
<dt>Show Call Tip</dt><dd><p>After an unclosed parenthesis for a function, open a small window with
313
317
function parameter hints. See <aclass="reference internal" href="#calltips"><spanclass="std std-ref">Calltips</span></a> in the
314
318
Editing and navigation section below.</p>
315
319
</dd>
316
-
<dt>Show surrounding parens</dt><dd><p>Highlight the surrounding parenthesis.</p>
320
+
<dt>Show Surrounding Parens</dt><dd><p>Highlight the surrounding parenthesis.</p>
317
321
</dd>
318
322
</dl>
319
323
</section>
320
324
<sectionid="format-menu-editor-window-only">
321
325
<spanid="format-menu"></span><h3>Format menu (Editor window only)<aclass="headerlink" href="#format-menu-editor-window-only" title="Permalink to this heading">¶</a></h3>
322
326
<dlclass="simple">
327
+
<dt>Format Paragraph</dt><dd><p>Reformat the current blank-line-delimited paragraph in comment block or
328
+
multiline string or selected line in a string. All lines in the
329
+
paragraph will be formatted to less than N columns, where N defaults to 72.</p>
330
+
</dd>
323
331
<dt>Indent Region</dt><dd><p>Shift selected lines right by the indent width (default 4 spaces).</p>
324
332
</dd>
325
333
<dt>Dedent Region</dt><dd><p>Shift selected lines left by the indent width (default 4 spaces).</p>
@@ -338,11 +346,7 @@ <h3>Edit menu (Shell and Editor)<a class="headerlink" href="#edit-menu-shell-and
338
346
<dt>New Indent Width</dt><dd><p>Open a dialog to change indent width. The accepted default by the Python
339
347
community is 4 spaces.</p>
340
348
</dd>
341
-
<dt>Format Paragraph</dt><dd><p>Reformat the current blank-line-delimited paragraph in comment block or
342
-
multiline string or selected line in a string. All lines in the
343
-
paragraph will be formatted to less than N columns, where N defaults to 72.</p>
344
-
</dd>
345
-
<dt>Strip trailing whitespace</dt><dd><p>Remove trailing space and other whitespace characters after the last
349
+
<dt>Strip Trailing Chitespace</dt><dd><p>Remove trailing space and other whitespace characters after the last
346
350
non-whitespace character of a line by applying str.rstrip to each line,
347
351
including lines within multiline strings. Except for Shell windows,
<h3>Search and Replace<aclass="headerlink" href="#search-and-replace" title="Permalink to this heading">¶</a></h3>
574
+
<p>Any selection becomes a search target. However, only selections within
575
+
a line work because searches are only performed within lines with the
576
+
terminal newline removed. If <codeclass="docutils literal notranslate"><spanclass="pre">[x]</span><spanclass="pre">Regular</span><spanclass="pre">expresion</span></code> is checked, the
577
+
target is interpreted according to the Python re module.</p>
578
+
</section>
568
579
<sectionid="completions">
569
580
<spanid="id3"></span><h3>Completions<aclass="headerlink" href="#completions" title="Permalink to this heading">¶</a></h3>
570
581
<p>Completions are supplied, when requested and available, for module
@@ -1021,6 +1032,7 @@ <h3><a href="../contents.html">Table of Contents</a></h3>
0 commit comments