summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/language_server/gdscript_language_protocol.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add custom api `textDocument/nativeSymbol` to allow inspect native symbols ↵geequlim2019-10-041-2/+3
| | | | from LSP clients
* Fix enumeration value of SymbolKind.geequlim2019-10-041-0/+5
| | | | | Add custom notification 'gdscript/show_native_symbol' to show native symbols in clients. Close client connections when stop gdscript-lsp
* Changed some code found by Clang Tidy and Coverityqarmin2019-09-221-2/+4
|
* Add optional goto definition support for native symbolsgeequlim2019-08-111-0/+4
| | | | | This action will show help for target symbol in godot editor and bring the godot editor window to foreground Improved markdown documentation for symbols.
* Add generate script api to dictionary supportGeequlim2019-08-111-12/+20
| | | | | Expose GDScriptLanguageProtocol singleton and classes for editor plugins (Not visiable in class tree) Fix minor bug in symbol resolve
* Check client workspace directory is validGeequlim2019-08-111-12/+11
| | | | | Drop test initialize message sent to client Remove unused code property for the parser class
* Improved performance for completion and symbol resolvation.Geequlim2019-08-111-1/+22
| | | | | | Improved uri and workspace path translatation on windows platform. The smart resolvation is much faster than builtin's in the server side. The smart resolve mode is still disabled as default as the clients might be slow with a planty of completion items.
* Add optional smart resolve sulotiongeequlim2019-08-111-0/+5
| | | | The smart resolvaion can guess most symbols but it might be slow so disabled by default users can turn on it in the editor setting
* Add a symbol pool to cache all native symbols and workspackes symbols.geequlim2019-08-111-1/+2
| | | | | | | Implement hover Implement completion documentation resolve Implement hover documentation Implement go to definition
* Add GDScript Language Protocol plugingeequlim2019-08-111-0/+173