diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-08-05 00:18:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-05 00:18:31 +0200 |
commit | 73b1f5ac795b6c8d02931b30c84a5f94eb3752d7 (patch) | |
tree | 3e841059d92d73cc46191af359531ebb2bccc432 /modules/gdscript/language_server/gdscript_text_document.h | |
parent | 85186bc0c5f8ad135168018bb90ac0dd4e834500 (diff) | |
parent | 7c5335081cbdb6a3dbe2f24855f42d06e8a446fa (diff) | |
download | redot-engine-73b1f5ac795b6c8d02931b30c84a5f94eb3752d7.tar.gz |
Merge pull request #48615 from Razoric480/lsp-rename
Implement LSP didSave notification and rename request
Diffstat (limited to 'modules/gdscript/language_server/gdscript_text_document.h')
-rw-r--r-- | modules/gdscript/language_server/gdscript_text_document.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gdscript/language_server/gdscript_text_document.h b/modules/gdscript/language_server/gdscript_text_document.h index e2987f779c..9021c84a3f 100644 --- a/modules/gdscript/language_server/gdscript_text_document.h +++ b/modules/gdscript/language_server/gdscript_text_document.h @@ -45,6 +45,7 @@ protected: void didOpen(const Variant &p_param); void didClose(const Variant &p_param); void didChange(const Variant &p_param); + void didSave(const Variant &p_param); void sync_script_content(const String &p_path, const String &p_content); void show_native_symbol_in_editor(const String &p_symbol_id); @@ -61,6 +62,7 @@ public: Array documentSymbol(const Dictionary &p_params); Array completion(const Dictionary &p_params); Dictionary resolve(const Dictionary &p_params); + Dictionary rename(const Dictionary &p_params); Array foldingRange(const Dictionary &p_params); Array codeLens(const Dictionary &p_params); Array documentLink(const Dictionary &p_params); |