Skip to content

Commit

Permalink
gh-57795: IDLE: Enter the selected text when opening the "Replace" di…
Browse files Browse the repository at this point in the history
…alog (GH-17593)

Co-authored-by: Roger Serwy <roger.serwy@gmail.com>
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
  • Loading branch information
3 people authored Dec 27, 2023
1 parent 1ddd773 commit 712afab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 16 deletions.
23 changes: 7 additions & 16 deletions Lib/idlelib/replace.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ def replace(text, insert_tags=None):
if not hasattr(engine, "_replacedialog"):
engine._replacedialog = ReplaceDialog(root, engine)
dialog = engine._replacedialog
dialog.open(text, insert_tags=insert_tags)
searchphrase = text.get("sel.first", "sel.last")
dialog.open(text, searchphrase, insert_tags=insert_tags)


class ReplaceDialog(SearchDialogBase):
Expand All @@ -51,27 +52,17 @@ def __init__(self, root, engine):
self.replvar = StringVar(root)
self.insert_tags = None

def open(self, text, insert_tags=None):
def open(self, text, searchphrase=None, *, insert_tags=None):
"""Make dialog visible on top of others and ready to use.
Also, highlight the currently selected text and set the
search to include the current selection (self.ok).
Also, set the search to include the current selection
(self.ok).
Args:
text: Text widget being searched.
searchphrase: String phrase to search.
"""
SearchDialogBase.open(self, text)
try:
first = text.index("sel.first")
except TclError:
first = None
try:
last = text.index("sel.last")
except TclError:
last = None
first = first or text.index("insert")
last = last or first
self.show_hit(first, last)
SearchDialogBase.open(self, text, searchphrase)
self.ok = True
self.insert_tags = insert_tags

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Enter the selected text when opening the "Replace" dialog.

0 comments on commit 712afab

Please sign in to comment.