| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Added status bar and toggle scripts panel button to EditorHelp/VScripts | Yuri Roubinsky | 2021-09-15 | 1 | -3/+1 |
| | | |||||
| * | Fix editor crash on pressing `Go to Previous Bookmark` menu button | Yuri Roubinsky | 2021-09-14 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #52106 from Paulb23/text-edit-optimisation | Gilles Roudière | 2021-09-08 | 1 | -1/+0 |
| |\ | | | | | Optimise TextEdit get line height and width | ||||
| | * | Optimise TextEdit get height and width | Paulb23 | 2021-08-28 | 1 | -1/+0 |
| | | | |||||
| * | | Merge pull request #51639 from Ev1lbl0w/gsoc21-dap | Fabio Alessandrelli | 2021-09-01 | 1 | -0/+8 |
| |\ \ | | | | | | | Implement more advanced features for DAP | ||||
| | * | | Implemented advanced features of DAP | Ev1lbl0w | 2021-08-31 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Respect client "supportsVariableType" capability Implement "breakpointLocations" request Implement "restart" request Implement "evaluate" request Fix error messages not being shown, and improved wrong path message Removed thread option and behavior Implemented detailed inspection of complex variables Fix "const"ness of functions Added a configurable timeout for requests Implement Godot custom data request/event Implement syncing of breakpoints Added support for debugging native platforms | ||||
| * | | | Rename String::is_rel_path to String::is_relative_path | Wilson E. Alvarez | 2021-08-29 | 1 | -2/+2 |
| | |/ |/| | |||||
| * | | Merge pull request #51627 from mhilbrunner/todo-for-neikeq | Rémi Verschelde | 2021-08-18 | 1 | -2/+0 |
| |\ \ | |||||
| | * | | Remove underscore hacks | Max Hilbrunner | 2021-08-17 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | | | | | Way less cruft. :) Co-authored-by: Ignacio Roldán Etcheverry <neikeq@users.noreply.github.com> | ||||
| * | | | Merge pull request #51729 from yjh0502/ext-reload-master | Rémi Verschelde | 2021-08-17 | 1 | -0/+2 |
| |\ \ \ | | | | | | | | | Auto-reload scripts with external editor | ||||
| | * | | | Auto-reload scripts with external editor | Jihyun Yu | 2021-08-17 | 1 | -0/+2 |
| | |/ / | |||||
| * / / | Improve Undo/Redo menu items | Haoyu Qiu | 2021-08-17 | 1 | -0/+12 |
| |/ / | | | | | | | | | | | | | | | | | | | | | * Make Undo/Redo menu items disabled when clicking it does nothing. * Context menu of `TextEdit` * Context menu of `LineEdit` * Editor's Scene menu * Script editor's Edit menu and context menu (for Script and Text) * Make editor undo/redo log messages translatable. * Mark `UndoRedo`'s `has_{un,re}do()` methods as `const`. * Expose `TextEdit`'s `has_{un,re}do()` to scripts since `{un,re}do()` are already available. | ||||
| * | | Reorganise text editor settings | Paulb23 | 2021-08-16 | 1 | -5/+5 |
| | | | |||||
| * | | Style: Cleanup code using `text_editor/completion/use_single_quotes` | Rémi Verschelde | 2021-08-13 | 1 | -4/+3 |
| | | | |||||
| * | | Allow dropping property path into script editor | Haoyu Qiu | 2021-08-13 | 1 | -0/+10 |
| |/ | |||||
| * | Cleanup and bind remaing methods in TextEdit | Paulb23 | 2021-08-12 | 1 | -7/+10 |
| | | |||||
| * | Protect internal CodeEdit --> TextEdit API | Paulb23 | 2021-08-12 | 1 | -1/+1 |
| | | |||||
| * | Cleanup TextEdit selection methods | Paulb23 | 2021-08-12 | 1 | -10/+10 |
| | | |||||
| * | Cleanup and rename caret operations | Paulb23 | 2021-08-12 | 1 | -43/+44 |
| | | |||||
| * | Use Key enum instead of plain integers | Aaron Franke | 2021-08-10 | 1 | -5/+5 |
| | | |||||
| * | Added EditorCommandPalette | Bhuvan Vemula | 2021-08-09 | 1 | -3/+4 |
| | | |||||
| * | Clean up and complete CodeEdit inspector and docs | Paulb23 | 2021-08-01 | 1 | -1/+3 |
| | | |||||
| * | Move symbol lookup into CodeEdit | Paulb23 | 2021-08-01 | 1 | -9/+8 |
| | | |||||
| * | Move auto brace completion to CodeEdit | Paulb23 | 2021-08-01 | 1 | -0/+8 |
| | | |||||
| * | Use const references where possible for List range iterators | Rémi Verschelde | 2021-07-25 | 1 | -11/+11 |
| | | |||||
| * | Use C++ iterators for Lists in many situations | Aaron Franke | 2021-07-23 | 1 | -26/+14 |
| | | |||||
| * | Merge pull request #50606 from Chaosus/textedit_fix_guttertype | Rémi Verschelde | 2021-07-19 | 1 | -1/+1 |
| |\ | | | | | Fixed typos in `TextEdit::GutterType` enum | ||||
| | * | Fixed typos in `TextEdit::GutterType` enum | Yuri Roubinsky | 2021-07-19 | 1 | -1/+1 |
| | | | |||||
| * | | Optimize StringName usage | reduz | 2021-07-18 | 1 | -31/+31 |
| |/ | | | | | | | | | | | * Added a new macro SNAME() that constructs and caches a local stringname. * Subsequent usages use the cached version. * Since these use a global static variable, a second refcounter of static usages need to be kept for cleanup time. * Replaced all theme usages by this new macro. * Replace all signal emission usages by this new macro. * Replace all call_deferred usages by this new macro. This is part of ongoing work to optimize GUI and the editor. | ||||
| * | Support single quote when dropping files to script | kobewi | 2021-07-03 | 1 | -2/+3 |
| | | |||||
| * | Script editor: Rename 'Clone Down' to 'Duplicate Selection' | Rémi Verschelde | 2021-06-29 | 1 | -5/+5 |
| | | | | | Fixes #36670. | ||||
| * | Move indent management to CodeEdit | Paulb23 | 2021-06-20 | 1 | -3/+3 |
| | | |||||
| * | Rename `instance()`->`instantiate()` when it's a verb | Lightning_A | 2021-06-19 | 1 | -2/+2 |
| | | |||||
| * | Merge pull request #49742 from Paulb23/remove_keywords_textedit | Rémi Verschelde | 2021-06-20 | 1 | -42/+0 |
| |\ | | | | | Remove redundant keywords from TextEdit | ||||
| | * | Remove redundant keywords from TextEdit | Paulb23 | 2021-06-19 | 1 | -42/+0 |
| | | | |||||
| * | | Added support for scripts reporting multiple errors to ScriptTextEditor | Eric M | 2021-06-19 | 1 | -13/+66 |
| |/ | | | | Scripts can now report multiple errors to the scripting editors in the engine. UI elements were added to support multiple errors. | ||||
| * | Merge pull request #49238 from Paulb23/code_edit_code_folding | Rémi Verschelde | 2021-06-16 | 1 | -2/+2 |
| |\ | | | | | Move code folding into CodeEdit and hide line hiding API | ||||
| | * | Move code folding into CodeEdit and hide line hiding API | Paulb23 | 2021-06-01 | 1 | -2/+2 |
| | | | |||||
| * | | Consistently prefix bound virtual methods with _ | kobewi | 2021-06-12 | 1 | -3/+3 |
| | | | |||||
| * | | Move FindReplaceBar out of CodeTextEditor | kobewi | 2021-06-08 | 1 | -0/+4 |
| |/ | |||||
| * | Move and expose Code Hint in CodeEdit | Paulb23 | 2021-06-01 | 1 | -3/+1 |
| | | |||||
| * | Move and expose AutoComplete in CodeEdit | Paulb23 | 2021-06-01 | 1 | -1/+1 |
| | | |||||
| * | Add comment and string tracking to CodeEdit | Paulb23 | 2021-06-01 | 1 | -0/+20 |
| | | |||||
| * | Add preload() to resource path when holding Ctrl | kobewi | 2021-05-27 | 1 | -2/+8 |
| | | |||||
| * | Add a keyboard shortcut to select the word under cursor in TextEdit | Hugo Locurcio | 2021-05-22 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | This also acts as a general-purpose "deselect" shortcut since pressing it a second time will deselect text. This is available both in the script editor and in TextEdit fields in use, both in the editor and projects. The Duplicate Line script editor shortcut was moved to Ctrl + Shift + D since it conflicts with the new shortcut (Ctrl + D). The rationale for doing so is that Duplicate Line is a less commonly used action, and its behavior can be replicated by copying and pasting the current line anyway. (With no selection active, the whole line will be copied.) | ||||
| * | Add custom background line colour to TextEdit and remove marked lines | Paulb23 | 2021-05-22 | 1 | -53/+12 |
| | | |||||
| * | Merge pull request #48605 from sent44/scripteditor_get_codeedit | Rémi Verschelde | 2021-05-16 | 1 | -0/+4 |
| |\ | | | | | Add `get_base_editor` to `ScriptEditorBase` | ||||
| | * | Add get_base_editor to ScriptEditorBase | sent44 | 2021-05-15 | 1 | -0/+4 |
| | | | |||||
| * | | text-editor: fix Clicking warning doesn't center around line | llschuster | 2021-05-13 | 1 | -1/+1 |
| |/ | |||||
| * | Add Various ColorPicker shapes | Kongfa Waroros | 2021-04-06 | 1 | -0/+3 |
| | | |||||
