| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \ \
| | | |
| | | |
| | | | |
Autocomplete properties in `tween_property`
|
| | |/
| |/| |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
Filter groups and categories from autocompletion
|
| | |/
| |/| |
|
|/ / |
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| |
| | |
Editor: Remove unused Class Name field from Create Script dialog
|
| | |
|
|\ \
| | |
| | |
| | | |
GDScript: Add raw string literals (r-strings)
|
| | | |
|
|\ \ \
| |_|/
|/| |
| | | |
Editor: Improve signal callback generation
|
| |/ |
|
|/
|
|
|
|
|
| |
implement reference lookup
Co-Authored-By: Ryan Brue <56272643+ryanabx@users.noreply.github.com>
Co-Authored-By: BooksBaum <15612932+booksbaum@users.noreply.github.com>
|
| |
|
| |
|
|\
| |
| |
| | |
GDScript: Add validation for `@export_node_path` annotation arguments
|
| |
| |
| |
| | |
Co-authored-by: George Marques <george@gmarqu.es>
|
|\ \
| | |
| | |
| | | |
GDScript: Fix bug with identifier shadowed below in current scope
|
| |/ |
|
|/
|
|
|
|
|
|
|
|
| |
* This implementation adds threads on the side of the client (script debugger).
* Some functions of the debugger are optimized.
* The profile is also now thread safe using atomics.
* The editor can switch between multiple threads when debugging.
This PR adds threaded support for the script language debugger. Every thread has its own thread local data and it will connect to the debugger using multiple thread IDs.
This means that, now, the editor can receive multiple threads entering debug mode at the same time.
|
|\
| |
| |
| | |
Script editor (GDScript): Show depended script errors
|
| | |
|
|\ \
| |/
|/|
| | |
Fix jumping to function definition using `Ctrl+LMB` or the "Lookup Symbol" button
|
| |
| |
| |
| | |
Symbol' button.
|
| |
| |
| |
| | |
Fixes #68475.
|
|\ \
| | |
| | |
| | | |
Fix functionality of Go To Definition for properties set/get
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This applies our existing style guide, and adds a new rule to that style
guide for modular components such as platform ports and modules:
Includes from the platform port or module ("local" includes) should be listed
first in their own block using relative paths, before Godot's "core" includes
which use "absolute" (project folder relative) paths, and finally thirdparty
includes.
Includes in `#ifdef`s come after their relevant section, i.e. the overall
structure is:
- Local includes
* Conditional local includes
- Core includes
* Conditional core includes
- Thirdparty includes
* Conditional thirdparty includes
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Fixups
Add levenshtein distance for comparisons, remove kind sort order, try to improve as many different use cases as possible
Trying again to improve code completion
Sort code autocompletion options by similarity based on input
To make it really brief, uses a combination `String.similiary`, the category system introduced in a previous PR, and some filtering to yield more predictable results, instead of scattering every completion option at seemingly random.
It also gives much higher priority to strings that contain the base in full, closer to the beginning or are perfect matches.
Also moves CodeCompletionOptionCompare to code_edit.cpp
Co-Authored-By: Micky <66727710+Mickeon@users.noreply.github.com>
Co-Authored-By: Eric M <41730826+EricEzaM@users.noreply.github.com>
|
|\ \ \
| | | |
| | | | |
Use `String.repeat()` to optimize several String methods
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Which allows editable data associated with a particular class instead of
the instance. Scripts with static variables are kept in memory
indefinitely unless the `@static_unload` annotation is used or the
`static_unload()` method is called on the GDScript.
If the custom function `_static_init()` exists it will be called when
the class is loaded, after the static variables are set.
|
|\ \ \ \
| | | | |
| | | | | |
Fix multi-line string highlighting with single quotes.
|
| | | | | |
|
|/ / / / |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Use type hints for `@GlobalScope` enums.
* Use plain `int` for `BitMask<T>`.
* Fix type hints for typed arrays.
* Use `Variant` and `void` type hints.
* Discard unnecessary class prefix.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Avoid crashing if the completion gets stuck in infinite recursion while
trying to guess the expression type.
|
| |_|/
|/| | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This reverts commit 7eb6367d5cb62fb48563ad940423198f792e3fe8.
Fixes #73058.
Fixes #73167.
This caused regressions, we'll retry with fixes for 4.1.
|
|\ \ \
| | | |
| | | |
| | | | |
Fixed the jumping to function definition using 'Ctrl+LMB'.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Fix code-completion suggesting non-static members for custom classes
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
In GDScript code-completion:
- Fixes class symbols not being marked as meta
- Remove signal in static contexts
Fixes #69928
|