We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd89674 commit e25594bCopy full SHA for e25594b
preditor/gui/find_files.py
@@ -71,6 +71,11 @@ def find(self):
71
self.finder.callback_matching = self.insert_found_text
72
self.finder.callback_non_matching = self.insert_text
73
74
+ # Start fresh output line.
75
+ window = self.parent().window() if self.parent() else None
76
+ if window:
77
+ window.console().startPrompt("")
78
+
79
self.insert_text(self.finder.title())
80
81
self.match_files_count = 0
@@ -91,6 +96,11 @@ def find(self):
91
96
)
92
97
93
98
99
+ # If user has Auto-prompt chosen, do so now.
100
101
+ if window.uiAutoPromptCHK.isChecked():
102
+ window.console().startInputLine()
103
94
104
def find_in_editor(self, editor, path):
95
105
# Ensure the editor text is loaded and get its raw text
106
editor.__show__()
0 commit comments