summaryrefslogtreecommitdiffstats
path: root/editor/code_editor.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-10-30 23:17:45 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-10-30 23:17:45 +0100
commitec5bfbd176c195b419074f803ace8a3dbff74734 (patch)
treeac777f828233aabfa9a210124fe922ba97814d98 /editor/code_editor.cpp
parentbe8761a801501ae4e095211284a1606ae8937eba (diff)
parent0d7db935aaa32e6b53d83f7b2e33848c740605ff (diff)
downloadredot-engine-ec5bfbd176c195b419074f803ace8a3dbff74734.tar.gz
Merge pull request #82707 from BrianMacIntosh/find-highlight-fix
Search terms are now highlighted when the bar opens with a selection.
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r--editor/code_editor.cpp50
1 files changed, 20 insertions, 30 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp
index 1842e8c1c4..9a10766900 100644
--- a/editor/code_editor.cpp
+++ b/editor/code_editor.cpp
@@ -141,6 +141,20 @@ void FindReplaceBar::_focus_lost() {
}
}
+void FindReplaceBar::_update_flags(bool p_direction_backwards) {
+ flags = 0;
+
+ if (is_whole_words()) {
+ flags |= TextEdit::SEARCH_WHOLE_WORDS;
+ }
+ if (is_case_sensitive()) {
+ flags |= TextEdit::SEARCH_MATCH_CASE;
+ }
+ if (p_direction_backwards) {
+ flags |= TextEdit::SEARCH_BACKWARDS;
+ }
+}
+
bool FindReplaceBar::_search(uint32_t p_flags, int p_from_line, int p_from_col) {
if (!preserve_cursor) {
text_editor->remove_secondary_carets();
@@ -431,14 +445,7 @@ void FindReplaceBar::_update_matches_label() {
}
bool FindReplaceBar::search_current() {
- flags = 0;
-
- if (is_whole_words()) {
- flags |= TextEdit::SEARCH_WHOLE_WORDS;
- }
- if (is_case_sensitive()) {
- flags |= TextEdit::SEARCH_MATCH_CASE;
- }
+ _update_flags(false);
int line, col;
_get_search_from(line, col);
@@ -455,17 +462,9 @@ bool FindReplaceBar::search_prev() {
popup_search(true);
}
- flags = 0;
String text = get_search_text();
- if (is_whole_words()) {
- flags |= TextEdit::SEARCH_WHOLE_WORDS;
- }
- if (is_case_sensitive()) {
- flags |= TextEdit::SEARCH_MATCH_CASE;
- }
-
- flags |= TextEdit::SEARCH_BACKWARDS;
+ _update_flags(true);
int line, col;
_get_search_from(line, col);
@@ -491,14 +490,7 @@ bool FindReplaceBar::search_next() {
popup_search(true);
}
- flags = 0;
-
- if (is_whole_words()) {
- flags |= TextEdit::SEARCH_WHOLE_WORDS;
- }
- if (is_case_sensitive()) {
- flags |= TextEdit::SEARCH_MATCH_CASE;
- }
+ _update_flags(false);
int line, col;
_get_search_from(line, col, true);
@@ -546,11 +538,9 @@ void FindReplaceBar::_show_search(bool p_focus_replace, bool p_show_only) {
search_text->set_caret_column(search_text->get_text().length());
}
- results_count = -1;
- results_count_to_current = -1;
- needs_to_count_results = true;
- _update_results_count();
- _update_matches_label();
+ preserve_cursor = true;
+ _search_text_changed(get_search_text());
+ preserve_cursor = false;
}
}