diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-01-08 18:29:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-08 18:29:39 +0100 |
commit | 5a8107f70a6dc3c43e89df0ad69a5a0124bfc2df (patch) | |
tree | b94d2944f7643f2371699d8a73d224e3d5aa6dd6 /modules/gdscript/language_server/gdscript_text_document.h | |
parent | c456d87ee60ec0609b21ff0476a06efaaae21719 (diff) | |
parent | d35c018a7a46823cf2e28bdeca766def5893f572 (diff) |
Merge pull request #34920 from GodotExplorer/lsp-signatureHelper
GDScript LSP: Implement signatureHelp
Diffstat (limited to 'modules/gdscript/language_server/gdscript_text_document.h')
-rw-r--r-- | modules/gdscript/language_server/gdscript_text_document.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/language_server/gdscript_text_document.h b/modules/gdscript/language_server/gdscript_text_document.h index d93d828003..b2fd0c31f9 100644 --- a/modules/gdscript/language_server/gdscript_text_document.h +++ b/modules/gdscript/language_server/gdscript_text_document.h @@ -67,6 +67,7 @@ public: Variant hover(const Dictionary &p_params); Array definition(const Dictionary &p_params); Variant declaration(const Dictionary &p_params); + Variant signatureHelp(const Dictionary &p_params); void initialize(); |