summaryrefslogtreecommitdiffstats
path: root/editor/plugins/script_text_editor.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-271-0/+1
|\
| * Untangle ColorPicker includeskobewi2024-11-221-0/+1
| |
* | Merge commit godotengine/godot@fd4c29a189e53a1e085df5b9b9a05cac9351b3efSpartan3222024-11-191-2/+2
|\|
| * Use `(r)find_char` instead of `(r)find` for single charactersA Thousand Ships2024-11-171-2/+2
| |
* | Merge commit godotengine/godot@6c05ec3d6732cac44cf85c91db7d3fd1075bcb23Spartan3222024-11-151-1/+1
|\|
| * Simplify some UID conversionskobewi2024-11-141-1/+1
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Fix script editor wrongly replaces and quotes non-ASCII lettersHaoyu Qiu2024-09-231-4/+4
|
* Merge pull request #96371 from KoBeWi/mentosRémi Verschelde2024-09-031-13/+11
|\ | | | | | | Improve dropping code in script editor
| * Improve dropping code in script editorkobewi2024-08-311-13/+11
| |
* | Merge pull request #96179 from passivestar/mac-breakpoint-shortcutsRémi Verschelde2024-09-031-2/+3
|\ \ | |/ |/| | | [macOS] Change breakpoint shortcuts to avoid conflicts
| * [macOS] Change breakpoint shortcuts to avoid conflict with the settings shortcutpassivestar2024-08-271-2/+3
| |
* | Refactor toggling script listkobewi2024-08-281-0/+1
| |
* | Merge pull request #94002 from kitbdev/fix-goto-errorRémi Verschelde2024-08-271-10/+7
|\ \ | |/ |/| | | Fix goto line issues in code editor
| * Fix goto line issues in code editorkit2024-07-311-10/+7
| |
* | Add `String.is_valid_unicode_identifier()`Haoyu Qiu2024-08-271-5/+5
|/ | | | | | | - Adds `is_valid_unicode_identifier()` - Adds `is_valid_ascii_identifier()` - Deprecates `is_valid_identifier()` - Renames `validate_identifier()` to `validate_ascii_identifier()`
* Editor: Consider tabs when calculating column for jump to errorDanil Alexeev2024-07-171-1/+10
|
* Fix dropping on selection in script editorkit2024-07-041-34/+33
|
* [Scene] Add `SceneStringNames::id_pressed`A Thousand Ships2024-05-301-9/+9
|
* Merge pull request #90664 from KoBeWi/shadowdropped_resourceRémi Verschelde2024-05-301-0/+5
|\ | | | | | | Prevent crash when dropping Resource that can't load
| * Prevent crash when dropping Resource that can't loadkobewi2024-04-141-0/+5
| |
* | Merge pull request #87099 from bitwise-aiden/ba-add-trim-newlinesRémi Verschelde2024-05-301-0/+9
|\ \ | | | | | | | | | Implement `trim_final_newlines` setting and functionality
| * | Implement trim_final_newlines functionalityAiden Storey2024-05-021-0/+9
| | |
* | | Merge pull request #92223 from ↵Rémi Verschelde2024-05-221-3/+3
|\ \ \ | | | | | | | | | | | | | | | | | | | | KoBeWi/do_people_really_copy_whole_shortcut_definitions_multiple_times_and_unironically_think_this_is_alright_🤔 Remove duplicate shortcut definitions
| * | | Remove duplicate shortcut definitionskobewi2024-05-211-3/+3
| | | |
* | | | Merge pull request #89630 from jsjtxietian/pick-colorRémi Verschelde2024-05-221-2/+3
|\ \ \ \ | |/ / / |/| | | | | | | Make "Pick Color"'s result less precise, keep only 3 decimals
| * | | Make "Pick Color"'s result less precise, keep only 3 decimalsjsjtxietian2024-04-151-2/+3
| | |/ | |/|
* | | Use Core/Scene stringnames consistentlykobewi2024-05-131-1/+1
| | |
* | | Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-041-4/+4
| |/ |/| | | | | | | | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable
* | Overhaul multiple caret editing in TextEdit.kit2024-04-261-38/+42
| | | | | | | | Use a multicaret edit to delay merging overlapping carets until the end.
* | Overhaul TextEdit selection.kit2024-04-261-29/+15
| | | | | | | | The caret is now a part of the selection.
* | Store line change in script navigation historykobewi2024-04-251-3/+24
|/
* Refactor check for overriden methods in inner classesAlex Drozd2024-03-261-8/+5
|
* Fix missing gutter icon for inner class method overridesAlex Drozd2024-03-251-2/+13
|
* Merge pull request #89599 from timothyqiu/vegetateRémi Verschelde2024-03-231-0/+1
|\ | | | | Fix unexpected auto translation of editor `Tree` content
| * Fix unexpected auto translation of Tree contentHaoyu Qiu2024-03-181-0/+1
| |
* | Merge pull request #89799 from timothyqiu/line-numbersRémi Verschelde2024-03-241-4/+3
|\ \ | | | | | | | | | Translate "Line N" as a whole
| * | Translate "Line N" as a wholeHaoyu Qiu2024-03-231-4/+3
| |/
* / Add editor settings for autocompletion with NodePath and StringNameVolTer2024-03-191-1/+4
|/
* Merge pull request #84907 from miv391/fix-gutter-errorRémi Verschelde2024-03-041-1/+3
|\ | | | | | | Do not bother with line colors if `line_number_gutter` is not yet calculated
| * Do not call _validate_script if editor is not enabledMika Viskari2024-03-011-1/+3
| |
* | Add const lvalue ref to editor/* container parametersMuller-Castro2024-02-261-4/+4
| |
* | Add methods to add submenus without using nameskobewi2024-02-221-22/+7
| |
* | Improved text editor status bar and zooming UX.Zi Ye2024-02-211-4/+6
| |
* | Merge pull request #87952 from paulloz/dotnet/byebye-signal-callback-generationRémi Verschelde2024-02-151-2/+7
|\ \ | | | | | | | | | Disable signal callback generation in C#
| * | Disable signal callback generation in C#Paul Joannon2024-02-141-2/+7
| | |
* | | Merge pull request #87479 from kitbdev/apply-imeRémi Verschelde2024-02-131-0/+3
|\ \ \ | | | | | | | | | | | | Fix TextEdit IME issues
| * | | Apply TextEdit IME on most actionskit2024-01-291-0/+3
| | | |
* | | | Merge pull request #86633 from rune-scape/regression-79882Rémi Verschelde2024-02-131-1/+4
|\ \ \ \ | |_|/ / |/| | | | | | | Fix possible crash (use after free) in ScriptTextEditor