summaryrefslogtreecommitdiff
path: root/scene/gui/text_edit.cpp
AgeCommit message (Collapse)Author
2019-06-20Fix TextEdit Selectqarmin
2019-06-03Merge pull request #26848 from ptrojahn/utf8navigationRémi Verschelde
Support UTF-8 in TextEdit and LineEdit navigation
2019-05-28Merge pull request #29174 from Chaosus/fix_line_wrap_outputRémi Verschelde
Fix "Index out of size" TextEdit's spam to output (when using Expression nodes in the visual shaders)
2019-05-26Fix TextEdit blocking scroll without scrollbarTomasz Chabora
2019-05-25Fix "Index out of size" TextEdit's spam to outputChaosus
2019-05-24Merge pull request #29078 from KoBeWi/scroll_stuffRémi Verschelde
Improvements to scroll handling
2019-05-24Merge pull request #28811 from iwek7/editor_remove_spaces_to_closes_indentionRémi Verschelde
Change rules of indenting for spaces
2019-05-24Improvements to scroll handlingTomasz Chabora
2019-05-22Fix 'TextEdit's line wrapping being highlighted incorrectlyMichael Alexsander Silva Dias
Fixes #22867.
2019-05-21Initialize readonly/editable in LineEdit and TextEdit controlsIbrahn Sahir
2019-05-20Merge pull request #28218 from KoBeWi/b00km4rk5Rémi Verschelde
Add bookmarks for easier code navigation
2019-05-20Merge pull request #26809 from KoBeWi/undo_set_text_like_a_bossRémi Verschelde
Allow to undo TextEdit.set_text
2019-05-19Fix typos with codespellRémi Verschelde
Using codespell 1.15.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear doubleclick leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
2019-05-17Merge pull request #28366 from iwek7/feature/issue28355/showSpacesInEditorMax Hilbrunner
Add feature to show spaces in code editor
2019-05-16Fix text_edit drawing incorrect chars when syntax highlighting enabledPaulb23
2019-05-16Allow to undo TextEdit.set_textTomasz Chabora
2019-05-11Change rules of indenting for spacesmiwanczuk
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-05Add bookmarks for easier code navigationTomasz Chabora
2019-05-04Support Mac OS default delete char hotkeysmegalike
2019-05-02Fix Mac OS move cursor behaviourmegalike
2019-05-01Merge pull request #28559 from megalike/mac_os_move_cursor_hotkeysRémi Verschelde
Support Mac OS default move cursor hotkeys
2019-05-01Support Mac OS default move cursor hotkeysmegalike
Add missing FALLTHROUGH define
2019-05-01Expose TextEdit's drawSpaces feature to GDScriptmiwanczuk
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-30Issue-28355 - show spaces in editormiwanczuk
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-09Support UTF-8 in TextEdit and LineEdit navigationPaul Trojahn
This allows jumps over whole non ASCII words with Ctrl+Left/Right in a LineEdit or TextEdit. Fixes #25681