Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | GDScript: invalidate GDScriptParserRef when reloading | rune-scape | 2024-04-18 | 1 | -1/+1 |
| | |||||
* | Merge pull request #89382 from dcaoc03/master | Rémi Verschelde | 2024-04-09 | 1 | -7/+37 |
|\ | | | | | | | Fix enum autocompletion for core classes | ||||
| * | Fixed enum autocompletion for core classes (Issue #88858) | Diogo Costa | 2024-03-15 | 1 | -7/+37 |
| | | | | | | | | Minor fix consisted in the use of [[fallthrough]] macro | ||||
* | | Add editor settings for autocompletion with NodePath and StringName | VolTer | 2024-03-19 | 1 | -1/+9 |
| | | |||||
* | | Optimize SceneTree's `change_scene_to_file` autocompletion | Micky | 2024-03-01 | 1 | -2/+16 |
|/ | |||||
* | Add fallback argument hints for default values | Aiden Storey | 2024-02-11 | 1 | -0/+6 |
| | |||||
* | GDScript: Reintroduce binary tokenization on export | George Marques | 2024-02-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | This adds back a function available in 3.x: exporting the GDScript files in a binary form by converting the tokens recognized by the tokenizer into a data format. It is enabled by default on export but can be manually disabled. The format helps with loading times since, the tokens are easily reconstructed, and with hiding the source code, since recovering it would require a specialized tool. Code comments are not stored in this format. The `--test` command can also include a `--use-binary-tokens` flag which will run the GDScript tests with the binary format instead of the regular source code by converting them in-memory before the test runs. | ||||
* | Merge pull request #88071 from ↵ | Rémi Verschelde | 2024-02-08 | 1 | -3/+11 |
|\ | | | | | | | | | | | Calinou/gdscript-nodepath-autocomplete-fix-identifiers Fix NodePath autocompletion to ensure paths are quoted when required | ||||
| * | Fix NodePath autocompletion to ensure paths are quoted when required | Hugo Locurcio | 2024-02-07 | 1 | -3/+11 |
| | | | | | | | | | | | | Every component of the path is now checked to be a valid identifier, so that node names that start with a digit always require the full path to be quoted. | ||||
* | | Fix autocompletion for enum members in the core classes | Yuri Rubinsky | 2024-02-07 | 1 | -54/+115 |
|/ | |||||
* | Better hide internal properties from users | Yuri Sizov | 2024-01-29 | 1 | -3/+9 |
| | |||||
* | Merge pull request #85239 from HolonProduction/global-class-property-location | Yuri Sizov | 2024-01-25 | 1 | -4/+56 |
|\ | | | | | | | Handle global classes when resolving property location | ||||
| * | Handle global classes when resolving property location | HolonProduction | 2024-01-24 | 1 | -4/+56 |
| | | |||||
* | | Merge pull request #85224 from HolonProduction/identifier-type-prefer-annotated | Yuri Sizov | 2024-01-24 | 1 | -16/+24 |
|\ \ | |/ |/| | | | Prefer identifiers annotated type if assigned type is incompatible to it | ||||
| * | Prefer identifiers annotated type if assigned type is incompatible to it | HolonProduction | 2024-01-17 | 1 | -16/+24 |
| | | |||||
* | | Merge pull request #85215 from HolonProduction/type-from-property-class-name | Rémi Verschelde | 2024-01-18 | 1 | -2/+13 |
|\ \ | | | | | | | | | | Handle global classes when resolving type from `PropertyInfo` | ||||
| * | | Handle global classes when resolving type from `PropertyInfo` | HolonProduction | 2024-01-17 | 1 | -2/+13 |
| | | | |||||
* | | | Merge pull request #87278 from HolonProduction/give-those-autoloads-an-upgrade | Yuri Sizov | 2024-01-17 | 1 | -16/+30 |
|\ \ \ | | | | | | | | | | | | | Handle GDScript in `_type_from_variant` for autocompletion | ||||
| * | | | Handle GDScript in `_type_from_variant` for autocompletion | HolonProduction | 2024-01-16 | 1 | -16/+30 |
| | |/ | |/| | |||||
* | | | Merge pull request #86554 from HolonProduction/lookup-subscript | Yuri Sizov | 2024-01-17 | 1 | -1/+2 |
|\ \ \ | | | | | | | | | | | | | Fix symbol lookup in index subscript | ||||
| * | | | Fix symbol lookup in index subscript | HolonProduction | 2023-12-27 | 1 | -1/+2 |
| | | | | |||||
* | | | | Merge pull request #85384 from HolonProduction/unique-name-completion | Yuri Sizov | 2024-01-17 | 1 | -5/+20 |
|\ \ \ \ | |_|/ / |/| | | | | | | | Suggest scene unique nodes in `get_node` autocompletion | ||||
| * | | | Suggest scene unique nodes in `get_node` autocompletion | HolonProduction | 2023-11-26 | 1 | -5/+20 |
| | | | | |||||
* | | | | Add const lvalue ref to container parameters | Muller-Castro | 2024-01-05 | 1 | -6/+6 |
| | | | | |||||
* | | | | Merge pull request #86667 from HolonProduction/completion-enum-sorting | Rémi Verschelde | 2024-01-04 | 1 | -2/+8 |
|\ \ \ \ | | | | | | | | | | | | | | | | Improve sorting of enum autocompletion | ||||
| * | | | | Improve sorting of enum autocompletion | HolonProduction | 2023-12-31 | 1 | -2/+8 |
| | |/ / | |/| | | |||||
* | | | | Merge pull request #84445 from Rubonnek/add-const-references-clang-tidy | Rémi Verschelde | 2024-01-04 | 1 | -2/+2 |
|\ \ \ \ | | | | | | | | | | | | | | | | Add const references detected by clang-tidy | ||||
| * | | | | Add const references detected by clang-tidy | Wilson E. Alvarez | 2023-12-16 | 1 | -2/+2 |
| |/ / / | |||||
* / / / | Fix the autocomplete function for the 'self' keyword. | S.V.I. Vilcrow | 2024-01-02 | 1 | -5/+2 |
|/ / / | |||||
* | | | Merge pull request #76591 from HolonProduction/complete-tween | Yuri Sizov | 2023-12-14 | 1 | -0/+58 |
|\ \ \ | | | | | | | | | | | | | Autocomplete properties in `tween_property` | ||||
| * | | | Autocomplete properties in tween_property | HolonProduction | 2023-11-19 | 1 | -0/+58 |
| | |/ | |/| | |||||
* | | | Fix regression when autocompleting subscript on get node | HolonProduction | 2023-12-13 | 1 | -4/+5 |
| | | | |||||
* | | | Merge pull request #85196 from HolonProduction/completion-filter-groups | Rémi Verschelde | 2023-12-05 | 1 | -1/+10 |
|\ \ \ | | | | | | | | | | | | | Filter groups and categories from autocompletion | ||||
| * | | | Filter groups and categories from autocompletion | HolonProduction | 2023-12-04 | 1 | -1/+10 |
| | |/ | |/| | |||||
* / | | Improve autocompletion with get_node | HolonProduction | 2023-12-04 | 1 | -2/+16 |
|/ / | |||||
* / | Codestyle: Fix some comment issues | Rémi Verschelde | 2023-11-21 | 1 | -2/+0 |
|/ | |||||
* | GDScript: Add autocompletion for static variables accessed via class | Danil Alexeev | 2023-10-11 | 1 | -10/+13 |
| | |||||
* | Highlight doc comments in a different color | Danil Alexeev | 2023-10-08 | 1 | -0/+4 |
| | |||||
* | GDScript: Fix `native_type` is empty for autoload without script | Danil Alexeev | 2023-10-04 | 1 | -1/+7 |
| | |||||
* | GDScript: Improve highlighting of types | Danil Alexeev | 2023-10-03 | 1 | -0/+6 |
| | |||||
* | Merge pull request #78573 from dalexeev/editor-create-script-class-name | Rémi Verschelde | 2023-09-25 | 1 | -9/+11 |
|\ | | | | | | | Editor: Remove unused Class Name field from Create Script dialog | ||||
| * | Editor: Remove unused Class Name field from Create Script dialog | Danil Alexeev | 2023-09-12 | 1 | -9/+11 |
| | | |||||
* | | Merge pull request #74995 from dalexeev/gds-r-strings | Rémi Verschelde | 2023-09-20 | 1 | -0/+1 |
|\ \ | | | | | | | | | | GDScript: Add raw string literals (r-strings) | ||||
| * | | GDScript: Add raw string literals (r-strings) | Danil Alexeev | 2023-09-11 | 1 | -0/+1 |
| | | | |||||
* | | | Merge pull request #79366 from dalexeev/gds-signal-info-and-callback | Rémi Verschelde | 2023-09-17 | 1 | -1/+1 |
|\ \ \ | |_|/ |/| | | | | | Editor: Improve signal callback generation | ||||
| * | | Editor: Improve signal callback generation | Danil Alexeev | 2023-09-11 | 1 | -1/+1 |
| |/ | |||||
* / | Language Server: Improve hovered symbol resolution, fix renaming bugs, ↵ | BooksBaum | 2023-09-11 | 1 | -2/+7 |
|/ | | | | | | | implement reference lookup Co-Authored-By: Ryan Brue <56272643+ryanabx@users.noreply.github.com> Co-Authored-By: BooksBaum <15612932+booksbaum@users.noreply.github.com> | ||||
* | Add coloring for completion of vector components | Yuri Rubinsky | 2023-08-30 | 1 | -0/+3 |
| | |||||
* | Fix completion option location not found | ajreckof | 2023-08-05 | 1 | -2/+2 |
| | |||||
* | Merge pull request #79935 from dalexeev/gds-validate-node-path-annotation | Yuri Sizov | 2023-08-01 | 1 | -3/+15 |
|\ | | | | | | | GDScript: Add validation for `@export_node_path` annotation arguments |