summaryrefslogtreecommitdiff
path: root/scene/gui/text_edit.cpp
AgeCommit message (Collapse)Author
2019-05-01Merge pull request #25350 from Connall/masterRémi Verschelde
Fix "Auto Brace Complete" inserting extra quotation character sometimes in a string.
2019-05-01Merge pull request #28493 from mitchcurtis/mac-lineRémi Verschelde
Make Command + Left go to first non-whitespace character
2019-04-30Merge pull request #28481 from iwek7/issue28446/highlighingOfWhitespacesRémi Verschelde
Disable higlighting all occurences of selection in editor if it contains only whitespaces
2019-04-30Merge pull request #26224 from hilfazer/autocompleteRémi Verschelde
Working autocomplete for $" and $'
2019-04-30Merge pull request #27693 from YeldhamDev/method_brackets_smartRémi Verschelde
Make brackets only be inserted when necessary when autocompleting methods
2019-04-30Merge pull request #28287 from YeldhamDev/text_editable_contextmenuRémi Verschelde
Make 'Line/TextEdit's context menus hide their editing options when in readonly mode
2019-04-30Merge pull request #28334 from YeldhamDev/popup_buttons_scaleRémi Verschelde
Make buttons that trigger popups have the same scale
2019-04-30issue-28446 - disable higlighting all occurences of string in editor if only ↵miwanczuk
whitespaces are selected
2019-04-29Make 'Line/TextEdit's context menus hide their editing options when in ↵Michael Alexsander Silva Dias
readonly mode Fixes #28243.
2019-04-29Merge pull request #28101 from MunWolf/debugger_cursorRémi Verschelde
Added a marker in text_edit that tells which row is executing.
2019-04-29Make buttons that trigger popups have the same scaleMichael Alexsander Silva Dias
2019-04-29Merge pull request #28281 from zqyoung1/fix-selection-undoRémi Verschelde
Fix selection undo
2019-04-29Merge pull request #28399 from YeldhamDev/textedit_expose_tab_foldRémi Verschelde
Expose 'TextEdit's tab drawing and folding to GDScript
2019-04-28macOS: make Command + Left go to first non-whitespace characterMitch Curtis
Instead of going to column 0. This matches the behaviour of other popular IDEs. Fixes #28462.
2019-04-24Expose 'TextEdit's tab drawing and folding to GDScriptMichael Alexsander Silva Dias
2019-04-24Make small changes to the new connection info on script featureMichael Alexsander Silva Dias
2019-04-23Added a marker in text_edit that tells which row is executing.Rikhardur Bjarni Einarsson
2019-04-22autocomplete for $" and $'hilfazer
2019-04-22Merge pull request #28234 from Paulb23/connection_info_on_scriptRémi Verschelde
Display connection information in the script editor
2019-04-21Fix completely #14835 -proper selection reset on undoZach Young
2019-04-20Display connection information in the script editorPaulb23
2019-04-13Restore script editor state between sessionsPaulb23
2019-04-11Reorganized 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-05Fix -Wimplicit-fallthrough warnings from GCC 8Rémi Verschelde
Adds `FALLTHROUGH` macro to specify when a fallthrough is intentional. Can be replaced by `[[fallthrough]]` if/when we switch to C++17. The warning is now enabled by default for GCC on `extra` warnings level (part of GCC's `-Wextra`). It's not enabled in Clang's `-Wextra` yet, but we could enable it manually once we switch to C++11. There's no equivalent feature in MSVC for now. Fixes #26135.
2019-04-04Make brackets only be inserted when necessary when autocompleting methodsMichael Alexsander Silva Dias
2019-03-05Check cursor line and columnVasiliy Makarov
Added a trivial check if cursor.line and cursor.column are valid. Fix #26245
2019-02-20Add -Wshadow=local to warnings and fix reported issues.marxin
Fixes #25316.
2019-02-20Fix word wrap cutoff and tab wrapping issueianb96
2019-02-16Fix copy text when TextEdit is readonlyqarmin
2019-02-04Fixed selection being activated when using scroll linesPaulb23
2019-01-26Brace completion for quotation marks was introducing another quotation mark ↵Connall Lindsay
at the end of the string, I think because it wasn't checking that the quotation mark didn't exist at the current cursors position. Simple change, that fixed the issue and stood up to testing. Issue #25084
2019-01-16Appease some CppCheck warns for files in the "scene" directoryMichael Alexsander Silva Dias
2019-01-08Update IME text only for focused input controls.bruvzg
2019-01-06Fix jumping when scrolling down fast with smooth scroll enabledTimo Schwarzer
Fixes #24773
2019-01-05Fix text edit wrapping beyond control size, issue 23896Paulb23
2019-01-03Merge pull request #24683 from SoIAS/autocompletion_menu_position_24674Rémi Verschelde
Fixed autocompletion menu vertical position
2019-01-03Fixed autocompletion menu vertical positionDawid Wdowiak
2019-01-01Update copyright statements to 2019Rémi Verschelde
Happy new year to the wonderful Godot community!
2018-12-27Merge pull request #24566 from ↵Rémi Verschelde
thomasruiz/fix/completion-box-center-text-vertically Center lines vertically in completion box
2018-12-23Fix caret size with font smaller than row heightThomas Ruiz
2018-12-23Center lines vertically in completion boxThomas Ruiz
2018-12-18Fix Word wrap cache desync causing crashPaulb23
2018-12-13Revert "Use more subtle indentation guides in the script editor"Rémi Verschelde
2018-12-11Merge pull request #23923 from bruvzg/ime_gdscriptRémi Verschelde
Changes IME to make it possible to use it from gdscript/gdnative
2018-12-09Merge pull request #20725 from Calinou/textedit-subtle-indent-guidesRémi Verschelde
Use more subtle indentation guides in the script editor
2018-11-29TextEdit: added redo option to the context menuallkhor
2018-11-26Add suggestions ignoring case at the end of the code autocompleteKanabenki
2018-11-25TextEdit: remove selection when clear happens.allkhor
2018-11-23Changes IME input to use notification instead of callback, exposes IME ↵bruvzg
methods to gdscript/gdnative.
2018-11-08-Moved EditorDefaultValue to ClassDB, made it coreJuan Linietsky
-Removed one and zero hints for properties, replaced by default value