aboutsummaryrefslogtreecommitdiff
path: root/scene/gui/text_edit.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fixed block indent inconsistency, fixes issue 3803Paulb232016-04-061-40/+62
| | | | (cherry picked from commit 93700676b5491ff41d0a14954e71327b99440f7e)
* Fixed text edit undo and redo operation interactionPaul Batty2016-04-061-12/+12
| | | | (cherry picked from commit 646e0897829d7baf4b982c59d4bddade85199665)
* Fixed 'complex' typo in method namePaulb232016-04-061-12/+12
| | | | (cherry picked from commit 971c3be52deddb163e90f17126d462e4f3900799)
* Fixed undoing twice when removing selectionPaulb232016-04-061-0/+5
| | | | (cherry picked from commit 15f43149e179f754f48b59ac08002d5c4c0a5bc0)
* Fixed insert mode interaction with auto completePaulb232016-04-061-0/+15
| | | | (cherry picked from commit a984adb5a6bde78c3b3c7681ad529cf22f2452ec)
* Fixed insert mode removing first unselected characterPaulb232016-04-061-4/+6
| | | | (cherry picked from commit fe779d4386ac32431ed85b6248b05f018a5db86e)
* Added insert mode to text editorPaulb232016-04-061-3/+42
| | | | (cherry picked from commit 2b57cb94da8bfad1f32a89437f4978301da92e10)
* Function syntax highlightingPaul Batty2016-04-021-0/+19
| | | | (cherry picked from commit 50aa78210c0e31ea8a348bdd8a2432159dc61879)
* Fixed numbers not highlighting after spacePaulb232016-04-021-1/+1
| | | | (cherry picked from commit cd07badee3c198d295354f4e35b6bdc73622dbcc)
* Syntax highlighting for numbersPaulb232016-04-021-2/+36
| | | | (cherry picked from commit c844c2d604ab7e8824659e1f6b6011039a552cbe)
* TextEdit: Fix Shift+Delete shortcut not calling cut()Ignacio Etcheverry2016-04-021-0/+7
| | | | (cherry picked from commit abb720438fcdc2c9e4d82bf28cbcfcd78bb7d001)
* Fixed highlighting when word occurs as substring firstPaulb232016-04-021-8/+14
| | | | (cherry picked from commit 9c0e1524e56a3d38bf5ab281939770e806ac24e9)
* Fixed highliting with shift and mousePaulb232016-04-021-5/+2
| | | | (cherry picked from commit 4cc3fbeaffcffe5fe834b2b2afda18661836f769)
* Highlight all occurrences of selected wordPaulb232016-04-021-0/+55
| | | | (cherry picked from commit b0488cacf27cb98c4a0dd58661c83262236e18a0)
* LineEdit/TextEdit: Add Shift+Delete shortcut for cutIgnacio Etcheverry2016-04-021-0/+6
| | | | (cherry picked from commit fac027cb14a730c1d8cca080dad733663c287a2d)
* TextEdit: Fix inconsistent copy, cut and paste behaviourIgnacio Etcheverry2016-04-021-80/+46
| | | | (cherry picked from commit 4dfd0c1863fca80ddc35b6bcacf339077a0c4f54)
* Added configuable tab sizePaulb232016-04-021-0/+7
| | | | (cherry picked from commit 9234bd3ff9a3ff025368a1882ccfb91ca1b96ff1)
* Undo and redo commands on text editor now affect internal version which ↵Saracen2016-04-021-6/+18
| | | | | | fixes inconsistent file saving validation. (cherry picked from commit b2e471fd7c60a81c29e21367a849c9bc0fb3ac05)
* remove trailing whitespaceHubert Jarosz2016-04-021-830/+830
| | | | (cherry picked from commit 4a4f2479146aa33e235ed57cde311efda68d3c8f)
* Enabled scrolling past end of filePaulb232016-04-021-1/+5
| | | | (cherry picked from commit f19eea2f2d01cdfd671f16436eb639b46908b150)
* Add editor settings for call hint placementMartin Chuckeles2016-03-051-4/+29
| | | | | | | Added settings: text_editor/put_callhint_tooltip_below_current_line and text_editor/callhint_tooltip_offset (cherry picked from commit 47206b409d6802ac9ccbaedaa0daedc30b739e2f)
* Hide hint if completion is activeMartin Chuckeles2016-03-051-1/+1
| | | | (cherry picked from commit 26cc14e83974b9d865edfb4f03396bdad5a29b87)
* Move the call hint under the current lineMartin Chuckeles2016-03-051-1/+1
| | | | (cherry picked from commit 03025f60b6db551335f3101c1d024dd86b492beb)
* support horizontal mouse wheel, use in text editorhondres2016-02-041-0/+6
|
* Merge pull request #3279 from neikeq/issue_3259Rémi Verschelde2016-01-081-1/+1
|\ | | | | Fix TextEdit caret being drawn when outside the visible region
| * Fix TextEdit caret drawn when outside the visible regionIgnacio Etcheverry2016-01-081-1/+1
| |
* | TextEdit/LineEdit: Handle numpad PageUp, PageDown, Home and EndIgnacio Etcheverry2016-01-071-12/+42
| |
* | TextEdit/LineEdit: Handle numpad arrows if NumLock is disabledIgnacio Etcheverry2016-01-071-0/+28
|/
* Update copyright to 2016 in headersGeorge Marques2016-01-011-1/+1
|
* Add missing argument names in GDScript bindingsRémi Verschelde2015-12-281-3/+3
| | | | | All classes were reviewed apart from VisualServer for which no argument name is documented at all. While doing this review, I found quite a few bugs that were fixed either in earlier commits or this one (mostly documentation bugs though, i.e. some arguments were listed at the wrong place).
* TextEdit: Scroll while selecting with mouse idleneikeq2015-12-091-3/+38
|
* Script Editor: automatic indentation after a colonkoalefant2015-11-291-1/+12
|
* Merge pull request #2364 from neikeq/textedit_selectJuan Linietsky2015-11-191-59/+60
|\ | | | | Some TextEdit selection improvements
| * TextEdit: Properly scroll vertically when selecting text with mouse dragneikeq2015-11-071-18/+13
| |
| * textedit selection improvementsneikeq2015-08-131-41/+47
| | | | | | | | | | allows using shift and pointer selection together, and selecting text while scrolling. tried to make it as similar as possible to most editors.
* | Implement Ctrl + backspace/delete to delete wordsFranklin Sobrinho2015-11-121-4/+109
| |
* | Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky2015-10-171-1/+1
|\ \
| * | ran cppcheck, fixed cases where array index is used before limits checkfirefly24422015-10-121-1/+1
| | |
* | | misc cleanupJuan Linietsky2015-10-171-0/+3
|/ /
* / Fix HScrollBar of TextEdit, closes #2355Franklin Sobrinho2015-09-091-5/+8
|/
* more code completion improvementsJuan Linietsky2015-06-271-0/+16
| | | | | | -calltip dissapears with more types of keypresses or when pressing ')' -properly looks into autoloaded scripts or nodes with another script for script functions/variables/etc.
* improved get_node(), connect(), etc code completion.Juan Linietsky2015-06-261-4/+36
| | | | | -properly completes text arguments -includes the "/root" autoloads
* -fixed many memory initialization issuesJuan Linietsky2015-06-061-0/+4
| | | | | -fixed deadlock on previews thread -fixed compilation errors on unix
* more fixesJuan Linietsky2015-05-191-2/+7
| | | | | fix ctrl-a for some cases, mentioned in #1704 fix toggling visibility not updating, fixes #1923
* optional formal changesehriche2015-05-061-2/+2
|
* fix crash in editor when using alt+arrows to indent, thanks adolson and ↵Juan Linietsky2015-05-051-0/+3
| | | | romulox_x
* Merge pull request #1804 from ricpelo/ricpelo-patch-2Juan Linietsky2015-05-041-2/+2
|\ | | | | Wrong use of | instead of ||
| * Wrong use of | instead of ||Ricardo Pérez2015-05-041-2/+2
| |
* | Triple click doesn't select line if click was done on different lines. Fix #1727Biliogadafr2015-05-021-1/+1
|/
* -Fixes from source code analyzizer, closes #1768Juan Linietsky2015-05-011-1/+1
|