summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2019-04-06 01:19:00 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2019-04-06 01:20:05 +0200
commit8a1c5a839090a26e6c859c3f09ba1274540eff9d (patch)
tree5b0251619fafaad82cc7a53d8ce1d5c6e733c416
parent7ca9863079c2c033e5dd550e0ab989c8593352cc (diff)
Find the previous match in script editor when pressing Shift + Enter
This allows cycling through matches more efficiently.
-rw-r--r--editor/code_editor.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp
index 0b06839ecf..134384c167 100644
--- a/editor/code_editor.cpp
+++ b/editor/code_editor.cpp
@@ -30,6 +30,7 @@
#include "code_editor.h"
+#include "core/os/input.h"
#include "core/os/keyboard.h"
#include "core/string_builder.h"
#include "editor/editor_scale.h"
@@ -432,7 +433,11 @@ void FindReplaceBar::_search_text_changed(const String &p_text) {
void FindReplaceBar::_search_text_entered(const String &p_text) {
- search_next();
+ if (Input::get_singleton()->is_key_pressed(KEY_SHIFT)) {
+ search_prev();
+ } else {
+ search_next();
+ }
}
void FindReplaceBar::_replace_text_entered(const String &p_text) {