summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/language_server/lsp.hpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove completion triggers for ',' and '(' which may conflict with signature ↵geequlim2020-01-111-2/+0
| | | | helper
* GDScript LSP: Implement signatureHelpgeequlim2020-01-091-0/+116
| | | | Enable smart resolve default to true as it is required for script symbol lookup
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Fix typos with codespellRémi Verschelde2019-11-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using codespell 1.16.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear dof doubleclick leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
* Small fixes to redundand code, copy paste bugsqarmin2019-10-141-1/+1
|
* lsp: Send godot class tree to clientsGeequlim2019-10-091-1/+36
|
* Format documentations to markdown only when neededgeequlim2019-10-051-1/+72
|
* Add custom api `textDocument/nativeSymbol` to allow inspect native symbols ↵geequlim2019-10-041-1/+12
| | | | from LSP clients
* Fix enumeration value of SymbolKind.geequlim2019-10-041-28/+32
| | | | | Add custom notification 'gdscript/show_native_symbol' to show native symbols in clients. Close client connections when stop gdscript-lsp
* Implement DocumentLink of GDScript LSP Servergeequlim2019-10-031-0/+35
|
* Add optional goto definition support for native symbolsgeequlim2019-08-111-0/+5
| | | | | This action will show help for target symbol in godot editor and bring the godot editor window to foreground Improved markdown documentation for symbols.
* Improve symbol resolve for inner classesGeequlim2019-08-111-4/+4
| | | | | | Only level one inner classes would be resolved currently but it sould cover most real world use case Improve documation parseing for const values Improve documation format for native symbols
* Improved performance for completion and symbol resolvation.Geequlim2019-08-111-274/+319
| | | | | | 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 a symbol pool to cache all native symbols and workspackes symbols.geequlim2019-08-111-8/+155
| | | | | | | Implement hover Implement completion documentation resolve Implement hover documentation Implement go to definition
* Add GDScript Language Protocol plugingeequlim2019-08-111-0/+1309