summaryrefslogtreecommitdiff
path: root/scene/gui/text_edit.cpp
AgeCommit message (Collapse)Author
2019-08-24Adjust viewport colour based on background colourPaulb23
2019-08-22Fix minimap mouse click resolving to -1Paulb23
2019-08-21Add minimap to text_editPaulb23
2019-08-21Add syntax highlighting cachePaulb23
2019-08-21Fix filter quotes wraped insert completion optionsgeequlim
2019-08-18Keep syntax highlighting on TextEdit in readonly modeMichael Alexsander Silva Dias
2019-08-15Fix autocompletion widget having its text leak outsideMichael Alexsander Silva Dias
2019-08-13Reorganize various menus for consistency and concisenessHugo Locurcio
- Clean up the recent scripts dialog to match the recent scenes dialog - Add "..." at the end of shortcuts that cause a modal dialog to appear This closes #31148.
2019-07-10Fix incorrect X position of line length guidelineShiqing
2019-07-09Merge pull request #28190 from griant/testRémi Verschelde
fix improper uncommenting behavior in TextEditor
2019-07-06Fix light area position in the selected completiongeequlim
2019-07-05Show icons for code completion optionsGeequlim
2019-07-01Merge pull request #29572 from qarmin/fix_text_edit_selectRémi Verschelde
Fix TextEdit Select crash
2019-06-30Draw the script editor's line length guideline below charactersHugo Locurcio
This prevents characters from looking strange if they cross the line length guideline.
2019-06-27Merge pull request #29941 from qarmin/redundant_code_and_othersRémi Verschelde
Remove redundant code, possible NULL pointers and others
2019-06-26Some code changed with Clang-Tidyqarmin
2019-06-24Give TextEdit a custom color for font when read only is setGwyneth 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-24Correct typo that broke custom selected font colorGwyneth Lowe
Change several font_selected_color to font_color_selected; the actual name of the override
2019-06-23Center script line when double clicked on error in debuggerDawid Wdowiak
2019-06-20Fix TextEdit Selectqarmin
2019-06-17Fix selection undo... for realTomasz Chabora
2019-06-14Fix TextEdit cursor.column having a negative valuePaulb23
2019-06-12Merge pull request #29601 from NilsIrl/hiding_enabledRémi Verschelde
Treat hiding_enabled as bool throughout
2019-06-11Fix error macro calls not ending with semicolonRémi Verschelde
It's not necessary, but the vast majority of calls of error macros do have an ending semicolon, so it's best to be consistent. Most WARN_DEPRECATED calls did *not* have a semicolon, but there's no reason for them to be treated differently.
2019-06-08Treat hiding_enabled as bool throughoutNils ANDRÉ-CHANG
2019-06-06Fix crash with get_keywords_colorqarmin
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