Skip to content
Snippets Groups Projects
Unverified Commit 53357b3e authored by Terry Jan Reedy's avatar Terry Jan Reedy Committed by GitHub
Browse files

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.
parent 6c439b97
Branches
Tags
No related merge requests found
......@@ -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 @@
('_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>>'),
......
In the Edit menu, move ``Select All`` and add a new separator.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment