Repeat the search for the last pattern and preferences. Module-level function to access the singleton SearchDialog instance to search again using the user entries and preferences from the last dialog. If there was no prior search, open the search dialog; otherwise, perform the sear
(text)
| 36 | return _setup(text).open(text, pat) # Open is inherited from SDBase. |
| 37 | |
| 38 | def find_again(text): |
| 39 | """Repeat the search for the last pattern and preferences. |
| 40 | |
| 41 | Module-level function to access the singleton SearchDialog |
| 42 | instance to search again using the user entries and preferences |
| 43 | from the last dialog. If there was no prior search, open the |
| 44 | search dialog; otherwise, perform the search without showing the |
| 45 | dialog. |
| 46 | """ |
| 47 | return _setup(text).find_again(text) |
| 48 | |
| 49 | def find_selection(text): |
| 50 | """Search for the selected pattern in the text. |
nothing calls this directly
no test coverage detected
searching dependent graphs…