mirror of
https://github.com/python/cpython.git
synced 2025-09-27 18:59:43 +00:00
gh-95471: IDLE - Tweak Edit menu (#95481)
Move `Select All` above `Cut` as it is used with `Cut` and `Copy` but not `Paste`. Add a separator between `Replace` and `Go to Line` to separate items that belong to the 'Edit-find' (above) and 'Edit-show' (below) IDLE github project topics.
This commit is contained in:
parent
6c439b978b
commit
53357b3ee5
3 changed files with 7 additions and 1 deletions
|
@ -4,6 +4,10 @@ Released on 2022-10-03
|
|||
=========================
|
||||
|
||||
|
||||
gh-95471: Tweak Edit menu. Move 'Select All' above 'Cut' as it is used
|
||||
with 'Cut' and 'Copy' but not 'Paste'. Add a separator between 'Replace'
|
||||
and 'Go to Line' to help IDLE issue triagers.
|
||||
|
||||
gh-95411: Enable using IDLE's module browser with .pyw files.
|
||||
|
||||
gh-89610: Add .pyi as a recognized extension for IDLE on macOS. This allows
|
||||
|
|
|
@ -42,16 +42,17 @@ menudefs = [
|
|||
('_Undo', '<<undo>>'),
|
||||
('_Redo', '<<redo>>'),
|
||||
None,
|
||||
('Select _All', '<<select-all>>'),
|
||||
('Cu_t', '<<cut>>'),
|
||||
('_Copy', '<<copy>>'),
|
||||
('_Paste', '<<paste>>'),
|
||||
('Select _All', '<<select-all>>'),
|
||||
None,
|
||||
('_Find...', '<<find>>'),
|
||||
('Find A_gain', '<<find-again>>'),
|
||||
('Find _Selection', '<<find-selection>>'),
|
||||
('Find in Files...', '<<find-in-files>>'),
|
||||
('R_eplace...', '<<replace>>'),
|
||||
None,
|
||||
('Go to _Line', '<<goto-line>>'),
|
||||
('S_how Completions', '<<force-open-completions>>'),
|
||||
('E_xpand Word', '<<expand-word>>'),
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
In the Edit menu, move ``Select All`` and add a new separator.
|
Loading…
Add table
Add a link
Reference in a new issue