summaryrefslogtreecommitdiffstats
path: root/editor/plugins/script_editor_plugin.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove duplicate shortcut definitionskobewi2024-05-211-9/+15
|
* Merge pull request #91887 from minionprocyk/masterRémi Verschelde2024-05-201-0/+3
|\ | | | | | | Use Option+Cmd+Left/Right for script editor history navigation on macOS
| * Use Option+Cmd+Left/Right for script editor history navigation on macOSPeter Procyk2024-05-121-0/+3
| |
* | Add option to open online doc for selected native class in script editorGaktan2024-05-141-3/+39
| |
* | [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-141-4/+4
| |
* | Use Core/Scene stringnames consistentlykobewi2024-05-131-5/+4
| |
* | Add shorthand for using singleton string nameskobewi2024-05-111-2/+2
|/
* Merge pull request #91619 from AThousandShips/find_improveRémi Verschelde2024-05-081-1/+1
|\ | | | | | | Replace `find` with `contains/has` where applicable
| * Replace `find` with `contains/has` where applicableA Thousand Ships2024-05-081-1/+1
| | | | | | | | | | | | | | * Replaces `find(...) != -1` with `contains` for `String` * Replaces `find(...) == -1` with `!contains` for `String` * Replaces `find(...) != -1` with `has` for containers * Replaces `find(...) == -1` with `!has` for containers
* | [Core] Add case-insensitive `String::containsn`A Thousand Ships2024-05-081-1/+1
|/
* Merge pull request #81906 from the-sink/dominant-script-defaultRémi Verschelde2024-05-071-1/+1
|\ | | | | | | Set `open_dominant_script_on_scene_change` to off by default
| * Set `open_dominant_script_on_scene_change` to off by defaultthe-sink2023-09-191-1/+1
| |
* | Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-041-2/+2
| | | | | | | | | | | | | | | | | | 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
* | Store line change in script navigation historykobewi2024-04-251-5/+45
| |
* | Further speed up closing multiple scriptskobewi2024-04-231-15/+16
| |
* | Merge pull request #90189 from Naros/expose-goto-helpRémi Verschelde2024-04-171-0/+2
|\ \ | | | | | | | | | Expose `goto_help` for GDExtension on `ScriptEditor`
| * | Expose `goto_help` for GDExtension on `ScriptEditor`Chris Cranford2024-04-161-0/+2
| | |
* | | Merge pull request #89861 from dalexeev/editor-help-fix-csharp-crashRémi Verschelde2024-04-051-9/+18
|\ \ \ | | | | | | | | | | | | Fix regression with C# build editor crash due to `EditorHelpHighlighter`
| * | | Fix regression with C# build editor crash due to `EditorHelpHighlighter`Danil Alexeev2024-03-241-9/+18
| | | |
* | | | [Native File Dialog] Add support for using native dialogs in the editor.bruvzg2024-03-281-5/+5
| |/ / |/| |
* | | Merge pull request #88465 from AeioMuch/search_results_buttonRémi Verschelde2024-03-251-12/+15
|\ \ \ | | | | | | | | | | | | [Editor] Hide Search Results by default and show it on first search.
| * | | Hide Search Results by default. Show it on first search and push it at the ↵AeioMuch2024-03-161-12/+15
| |/ / | | | | | | | | | end. Add a close button to hide it back. Also switch to Script Editor if a searched line is clicked.
* | | Merge pull request #89599 from timothyqiu/vegetateRémi Verschelde2024-03-231-0/+2
|\ \ \ | | | | | | | | Fix unexpected auto translation of editor `Tree` content
| * | | Fix unexpected auto translation of Tree contentHaoyu Qiu2024-03-181-0/+2
| |/ /
* / / Fix sorting of files/dirs in dialogsA Thousand Ships2024-03-201-1/+1
|/ / | | | | | | Sorts leading `_` before other characters except `.`.
* | Add editor shortcuts to toggle bottom panel visibilityHugo Locurcio2024-03-051-1/+1
| | | | | | | | | | | | | | | | Default shortcuts use the first or second letter of each word. This also adds a new shortcut to toggle the last opened bottom panel. On editor startup, this defaults to the first panel in the list (which is the Output panel).
* | Merge pull request #86705 from KoBeWi/resourceptionRémi Verschelde2024-02-291-1/+10
|\ \ | | | | | | | | | Improve saving of built-in resources
| * | Improve saving of built-in resourceskobewi2024-01-021-1/+10
| | |
* | | Merge pull request #88742 from MajorMcDoom/text-editor-zoomRémi Verschelde2024-02-271-1/+3
|\ \ \ | | | | | | | | | | | | Fix the text editor theme not being applied on editor start
| * | | Fixed the text editor theme not being applied on editor start.Zi Ye2024-02-251-1/+3
| | | |
* | | | Add const lvalue ref to editor/* container parametersMuller-Castro2024-02-261-9/+9
| | | |
* | | | Merge pull request #88675 from MajorMcDoom/script-editor-redundancyRémi Verschelde2024-02-261-4/+0
|\ \ \ \ | |/ / / |/| | | | | | | Remove some redundant method calls from ScriptEditor
| * | | Removed some redundant calls from ScriptEditor.Zi Ye2024-02-221-4/+0
| | | |
* | | | Merge pull request #87760 from kitbdev/extract-bottom-dockRémi Verschelde2024-02-231-3/+4
|\ \ \ \ | | | | | | | | | | | | | | | Extract BottomPanel from EditorNode
| * | | | Extract BottomPanel from EditorNodekit2024-02-201-3/+4
| | | | |
* | | | | Add methods to add submenus without using nameskobewi2024-02-221-8/+4
| |/ / / |/| | |
* | | | Improved text editor status bar and zooming UX.Zi Ye2024-02-211-6/+40
|/ / /
* | | Use check_changed_settings_in_group() everywherekobewi2024-02-191-0/+5
| | |
* | | Make auto translation inheritableMichael Alexsander2024-02-151-3/+3
| | |
* | | Disable signal callback generation in C#Paul Joannon2024-02-141-0/+4
| | |
* | | Disable multi-window buttons instead of hiding them when support is unavailableHugo Locurcio2024-01-271-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | This is more explicit as for why this functionality isn't available depending on editor settings and current platform. This also exposes a `EditorInterface.is_multi_window_enabled()` method so that editor plugins can easily query whether the editor is able and expected to create multiple windows.
* | | Merge pull request #86676 from rune-scape/sparse-script-reloadYuri Sizov2024-01-171-3/+23
|\ \ \ | | | | | | | | | | | | GDScript: Hot-reload changed scripts only
| * | | Hot-reload only changed scriptsrune-scape2024-01-021-3/+23
| |/ /
* | | Reorganize code related to editor themingYuri Sizov2024-01-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change introduces a new EditorThemeManager class to abstract theme generatio and its subroutines. Logic related to EditorTheme, EditorColorMap, and editor icons has been extracted into their respective files with includes cleaned up. All related files have been moved to a separate folder to better scope them in the project. This includes relevant generated files as well.
* | | Update deferred calls to use Callableskobewi2024-01-091-16/+5
| | |
* | | Merge pull request #82498 from aXu-AP/docs-double-navigationRémi Verschelde2024-01-091-1/+0
|\ \ \ | | | | | | | | | | | | Fix opening docs writing extra navigation history
| * | | Fix opening docs writing extra navigation historyaXu-AP2023-09-291-1/+0
| | |/ | |/| | | | | | | | | | Fix #82292 Removes extraneous call to change the tab if the page wasn't yet open when opening class member description.
* | | Merge pull request #83577 from DennisManaa/fix-translation-for-item-listRémi Verschelde2024-01-041-0/+3
|\ \ \ | | | | | | | | | | | | Add automatic translation of items to ItemList
| * | | Implement automatic translation for ItemListDennisManaa2023-10-231-0/+3
| | | |
* | | | Merge pull request #84445 from Rubonnek/add-const-references-clang-tidyRémi Verschelde2024-01-041-2/+2
|\ \ \ \ | |_|_|/ |/| | | | | | | Add const references detected by clang-tidy