Merge pull request #73196 from Vilcrow/fix-lookup-symbol

Fix jumping to function definition using `Ctrl+LMB` or the "Lookup Symbol" button
This commit is contained in:
Yuri Sizov
2023-07-24 19:32:12 +02:00
5 changed files with 39 additions and 21 deletions

View File

@@ -248,12 +248,20 @@
Returns the full text with char [code]0xFFFF[/code] at the caret location.
</description>
</method>
<method name="get_text_for_symbol_lookup">
<method name="get_text_for_symbol_lookup" qualifiers="const">
<return type="String" />
<description>
Returns the full text with char [code]0xFFFF[/code] at the cursor location.
</description>
</method>
<method name="get_text_with_cursor_char" qualifiers="const">
<return type="String" />
<param index="0" name="line" type="int" />
<param index="1" name="column" type="int" />
<description>
Returns the full text with char [code]0xFFFF[/code] at the specified location.
</description>
</method>
<method name="has_auto_brace_completion_close_key" qualifiers="const">
<return type="bool" />
<param index="0" name="close_key" type="String" />