summaryrefslogtreecommitdiffstats
path: root/scene/gui/code_edit.h
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2023-07-24 19:32:12 +0200
committerYuri Sizov <yuris@humnom.net>2023-07-24 19:32:12 +0200
commit2bd904e3db8a82464e623768b5fd08114e2186ee (patch)
tree96e64dbb9217de2039448c520b021e8e04cd497a /scene/gui/code_edit.h
parentd6bb6d42b2d26d15e6362983232e211907f24886 (diff)
parent56e2fad31927e40406bc888aab99fa8f3f417d1f (diff)
downloadredot-engine-2bd904e3db8a82464e623768b5fd08114e2186ee.tar.gz
Merge pull request #73196 from Vilcrow/fix-lookup-symbol
Fix jumping to function definition using `Ctrl+LMB` or the "Lookup Symbol" button
Diffstat (limited to 'scene/gui/code_edit.h')
-rw-r--r--scene/gui/code_edit.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/scene/gui/code_edit.h b/scene/gui/code_edit.h
index 6933eb9392..a3c968da60 100644
--- a/scene/gui/code_edit.h
+++ b/scene/gui/code_edit.h
@@ -455,7 +455,8 @@ public:
void set_symbol_lookup_on_click_enabled(bool p_enabled);
bool is_symbol_lookup_on_click_enabled() const;
- String get_text_for_symbol_lookup();
+ String get_text_for_symbol_lookup() const;
+ String get_text_with_cursor_char(int p_line, int p_column) const;
void set_symbol_lookup_word_as_valid(bool p_valid);