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:
Terry Jan Reedy 2022-07-30 21:09:07 -04:00 committed by GitHub
parent 6c439b978b
commit 53357b3ee5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 1 deletions

View file

@ -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-95411: Enable using IDLE's module browser with .pyw files.
gh-89610: Add .pyi as a recognized extension for IDLE on macOS. This allows gh-89610: Add .pyi as a recognized extension for IDLE on macOS. This allows

View file

@ -42,16 +42,17 @@ menudefs = [
('_Undo', '<<undo>>'), ('_Undo', '<<undo>>'),
('_Redo', '<<redo>>'), ('_Redo', '<<redo>>'),
None, None,
('Select _All', '<<select-all>>'),
('Cu_t', '<<cut>>'), ('Cu_t', '<<cut>>'),
('_Copy', '<<copy>>'), ('_Copy', '<<copy>>'),
('_Paste', '<<paste>>'), ('_Paste', '<<paste>>'),
('Select _All', '<<select-all>>'),
None, None,
('_Find...', '<<find>>'), ('_Find...', '<<find>>'),
('Find A_gain', '<<find-again>>'), ('Find A_gain', '<<find-again>>'),
('Find _Selection', '<<find-selection>>'), ('Find _Selection', '<<find-selection>>'),
('Find in Files...', '<<find-in-files>>'), ('Find in Files...', '<<find-in-files>>'),
('R_eplace...', '<<replace>>'), ('R_eplace...', '<<replace>>'),
None,
('Go to _Line', '<<goto-line>>'), ('Go to _Line', '<<goto-line>>'),
('S_how Completions', '<<force-open-completions>>'), ('S_how Completions', '<<force-open-completions>>'),
('E_xpand Word', '<<expand-word>>'), ('E_xpand Word', '<<expand-word>>'),

View file

@ -0,0 +1 @@
In the Edit menu, move ``Select All`` and add a new separator.