summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/language_server
Commit message (Collapse)AuthorAgeFilesLines
...
* GDScript LSP: Implement goto declarationgeequlim2020-01-042-54/+69
|
* Update copyright statements to 2020Rémi Verschelde2020-01-0111-22/+22
| | | | | | | | | | | 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.
* Cleans up headers included in editor_node.hHaoyu Qiu2019-12-241-0/+1
|
* Removed unused variables, add some constants numbersRafał Mikrut2019-12-102-3/+1
|
* Fix typos with codespellRémi Verschelde2019-11-222-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 ```
* Remove all uses of ERR_EXPLAIN macros.Marcel Admiraal2019-11-111-2/+1
|
* Small fixes to redundand code, copy paste bugsqarmin2019-10-141-1/+1
|
* fix #32588 crash in language serverHaSa10022019-10-111-1/+1
|
* Decrease polling frequency to 20 Hz in the GDScript language serverHugo Locurcio2019-10-101-1/+2
| | | | This decreases the language server's CPU usage.
* Merge pull request #32671 from GodotExplorer/lsp-send-godot-class-treeRémi Verschelde2019-10-092-1/+52
|\ | | | | lsp: Send godot class tree to clients
| * lsp: Send godot class tree to clientsGeequlim2019-10-092-1/+52
| |
* | lsp: Fix signature of void returned functions in native methodsGeequlim2019-10-091-1/+5
|/
* Format documentations to markdown only when neededgeequlim2019-10-054-74/+82
|
* Add custom api `textDocument/nativeSymbol` to allow inspect native symbols ↵geequlim2019-10-046-5/+58
| | | | from LSP clients
* Fix enumeration value of SymbolKind.geequlim2019-10-043-52/+65
| | | | | 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-037-4/+99
|
* Fix codeblock formating to markdowngeequlim2019-10-031-2/+2
|
* Fix `line` being assigned to twice in the GDScript language serverHugo Locurcio2019-09-231-4/+2
| | | | This closes #32090.
* Changed some code found by Clang Tidy and Coverityqarmin2019-09-223-4/+8
|
* Distinguish editor-originating messages in the editor logHugo Locurcio2019-09-201-2/+2
| | | | | | | This fades out messages originating from the editor to make messages printed by the project stand out more. This also tweaks wording in some editor messages for consistency.
* Improve code compeletion for virtual methods with signaturesgeequlim2019-08-112-1/+6
|
* Add optional goto definition support for native symbolsgeequlim2019-08-1110-84/+134
| | | | | 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-117-35/+207
| | | | | 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-113-15/+11
| | | | | Drop test initialize message sent to client Remove unused code property for the parser class
* Improve symbol resolve for inner classesGeequlim2019-08-115-47/+156
| | | | | | 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-119-442/+496
| | | | | | 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-118-65/+260
| | | | 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-118-34/+862
| | | | | | | Implement hover Implement completion documentation resolve Implement hover documentation Implement go to definition
* Add GDScript Language Protocol plugingeequlim2019-08-1111-0/+2470