Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-31 | Improved TextEdit search usability & documentation | PouleyKetchoupp | |
2019-10-27 | Improve performance of connection info in the script editor | Paulb23 | |
2019-09-22 | Merge pull request #29895 from ptrojahn/menukey | Rémi Verschelde | |
Support menu key in TextEdit and LineEdit controls | |||
2019-09-22 | Support menu key in TextEdit and LineEdit controls | Paul Trojahn | |
Related to #15542 | |||
2019-09-07 | Add Ability to Enable/Disable Shortcuts for LineEdit/TextEdit | Emmanuel Barroga | |
This PR adds the ability to enable/disable shortcut keys and selection for LineEdit/TextEdit. It also updates the context menu when you disable/enable the shortcut keys or selection. | |||
2019-08-25 | Refactor TextEdit control height calculations | Paulb23 | |
2019-08-25 | Minimap scroll now acts similar to scrollbar | Paulb23 | |
2019-08-21 | Add minimap to text_edit | Paulb23 | |
2019-08-21 | Add syntax highlighting cache | Paulb23 | |
2019-07-09 | Merge pull request #28190 from griant/test | Rémi Verschelde | |
fix improper uncommenting behavior in TextEditor | |||
2019-07-05 | Show icons for code completion options | Geequlim | |
2019-06-24 | Give TextEdit a custom color for font when read only is set | Gwyneth Lowe | |
Previously there was some transparency hard coded into TextEdit when in read only mode. This change adds a custom color for adjusting the font in read only mode. It also applies when syntax highlighting is on. | |||
2019-06-24 | Correct typo that broke custom selected font color | Gwyneth Lowe | |
Change several font_selected_color to font_color_selected; the actual name of the override | |||
2019-06-19 | Made use of semicolons more consitent, fixed formatting | JohnJLight | |
2019-06-08 | Treat hiding_enabled as bool throughout | Nils ANDRÉ-CHANG | |
2019-05-24 | Merge pull request #28811 from iwek7/editor_remove_spaces_to_closes_indention | Rémi Verschelde | |
Change rules of indenting for spaces | |||
2019-05-21 | Merge pull request #29041 from hbina/add_const | Rémi Verschelde | |
add const to methods that return literals | |||
2019-05-21 | added a const keyword for a methods that return constant literal... | hbina085 | |
2019-05-20 | Merge pull request #28218 from KoBeWi/b00km4rk5 | Rémi Verschelde | |
Add bookmarks for easier code navigation | |||
2019-05-11 | Change rules of indenting for spaces | miwanczuk | |
Now indentations and deindentations of spaces attemt to align text to closest full indent level. It works with tab/tab+shift (both with selection and no selection) as well as backspace. Also fixes bug where selection and cursor position were mispaced after (un)indenting selected text. | |||
2019-05-05 | Add bookmarks for easier code navigation | Tomasz Chabora | |
2019-04-30 | Issue-28355 - show spaces in editor | miwanczuk | |
2019-04-23 | Added a marker in text_edit that tells which row is executing. | Rikhardur Bjarni Einarsson | |
2019-04-22 | Merge pull request #28234 from Paulb23/connection_info_on_script | Rémi Verschelde | |
Display connection information in the script editor | |||
2019-04-20 | Display connection information in the script editor | Paulb23 | |
2019-04-19 | fix improper uncommenting behavior in TextEditor | griant | |
2019-04-13 | Restore script editor state between sessions | Paulb23 | |
2019-04-11 | Reorganized connection dialog for much improved ease of use. | Juan Linietsky | |
-Removed dest path field -Added a "Source" signal -Added an "Advanced" button to hide complexity -Fix bug on Tree to make sure "ensure visible" works on hidden trees -Fix bug on TextEdit to ensure signals created with script not open sill focus the right line | |||
2019-04-02 | Fix -Wnon-virtual-dtor warnings. | marxin | |
Example of the warning: ./core/script_language.h:198:7: warning: 'class ScriptCodeCompletionCache' has virtual functions and accessible non-virtual destructor [-Wnon-virtual-dtor] | |||
2019-01-05 | Fix text edit wrapping beyond control size, issue 23896 | Paulb23 | |
2019-01-01 | Update copyright statements to 2019 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2018-12-13 | Revert "Use more subtle indentation guides in the script editor" | Rémi Verschelde | |
2018-12-11 | Merge pull request #23923 from bruvzg/ime_gdscript | Rémi Verschelde | |
Changes IME to make it possible to use it from gdscript/gdnative | |||
2018-12-09 | Merge pull request #20725 from Calinou/textedit-subtle-indent-guides | Rémi Verschelde | |
Use more subtle indentation guides in the script editor | |||
2018-11-29 | TextEdit: added redo option to the context menu | allkhor | |
2018-11-23 | Changes IME input to use notification instead of callback, exposes IME ↵ | bruvzg | |
methods to gdscript/gdnative. | |||
2018-10-26 | Remove no longer necessary "raise_from_completion" in TextEdit | zhagsenkk | |
This is no longer needed to fix #1257 because the code-autocomplete hint stops at the script editor’s edge now. And #6690 will not arise because it is just caused by "raise_from_completion". Fixes #22504 and fixes #16064. | |||
2018-10-03 | Use more subtle indentation guides in the script editor | Hugo Locurcio | |
2018-09-12 | Merge pull request #21219 from AlexHolly/fix-textedit-shows-nothing | Rémi Verschelde | |
TextEdit update cache.size on ENTER_TREE | |||
2018-09-08 | Uncommenting a selection was not updating the selection. | Alexander Holland | |
Also adds uncomment lines(ctrl+u) where # is not in first place | |||
2018-08-25 | TextEdit replaced cache.size with get_size() | Alexander Holland | |
2018-07-26 | Reduce unnecessary COW on Vector by make writing explicit | Hein-Pieter van Braam | |
This commit makes operator[] on Vector const and adds a write proxy to it. From now on writes to Vectors need to happen through the .write proxy. So for instance: Vector<int> vec; vec.push_back(10); std::cout << vec[0] << std::endl; vec.write[0] = 20; Failing to use the .write proxy will cause a compilation error. In addition COWable datatypes can now embed a CowData pointer to their data. This means that String, CharString, and VMap no longer use or derive from Vector. _ALWAYS_INLINE_ and _FORCE_INLINE_ are now equivalent for debug and non-debug builds. This is a lot faster for Vector in the editor and while running tests. The reason why this difference used to exist is because force-inlined methods used to give a bad debugging experience. After extensive testing with modern compilers this is no longer the case. | |||
2018-07-20 | Add editor highlight for type-safe lines | George Marques | |
The line number is hightlighted to indicate that the line contains only type-safe code. | |||
2018-05-30 | Improve breakpoints and breakpoint gutter API in TextEdit | Gabriel Gavilan | |
Added breakpoint_gutter, is_breakpoint_gutter_enabled, set_breakpoint_gutter_enabled, get_breakpoints, remove_breakpoints. Fixed breakpoint_toggled signal not fierd when text is edited. Fixes #18026. | |||
2018-05-15 | fix get_char_width for non-latin characters | ianb96 | |
2018-05-14 | TextEdit word wrap | Ian | |
2018-05-03 | Script Editor now displays positional column | Unknown | |
This solves #17931 and makes the script editor consistent with other text editors(Sublime, Gedit, Vim) in displaying the position rather than the raw number of characters. | |||
2018-04-07 | Fixed color regions and added local color region cache | Paulb23 | |
2018-04-02 | Abstracted the syntax highlighter from text edit | Paulb23 | |
2018-02-14 | Merge pull request #15618 from ianb96/fold_comment | Rémi Verschelde | |
TextEdit folding over unindented comments |