aboutsummaryrefslogtreecommitdiff
path: root/scene/gui/text_edit.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge pull request #4017 from Paulb23/set_tab_sizeRémi Verschelde2016-03-141-0/+7
|\ | | | | Added configurable tab size in the text editor.
| * Added configuable tab sizePaulb232016-03-141-0/+7
| |
* | Undo and redo commands on text editor now affect internal version which ↵Saracen2016-03-131-6/+18
|/ | | | fixes inconsistent file saving validation.
* remove trailing whitespaceHubert Jarosz2016-03-091-830/+830
|
* Merge pull request #3969 from Paulb23/scroll_past_end_of_fileJuan Linietsky2016-03-081-1/+5
|\ | | | | Enabled scrolling past end of file in text editor.
| * Enabled scrolling past end of filePaulb232016-03-071-1/+5
| |
* | Add special new line openingMartin Chuckeles2016-03-041-0/+21
|/
* Add editor settings for call hint placementMartin Chuckeles2016-03-041-4/+29
| | | | | Added settings: text_editor/put_callhint_tooltip_below_current_line and text_editor/callhint_tooltip_offset
* Hide hint if completion is activeMartin Chuckeles2016-03-031-1/+1
|
* Move the call hint under the current lineMartin Chuckeles2016-03-031-1/+1
|
* 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
|
* -oops, duplicated text issue fix..Juan Linietsky2015-04-201-0/+1
|
* disable undo properly after ctrl-i, fixes #1688Juan Linietsky2015-04-181-2/+1
|
* -try to avoid errors when path using ".." is present in script include, ↵Juan Linietsky2015-04-181-10/+0
| | | | fixes #1703
* Updated copyright year in all headersJuan Linietsky2015-04-181-1/+1
|
* Merge pull request #1402 from ElectricSolstice/editor_match_fixJuan Linietsky2015-03-221-2/+47
|\ | | | | Fixed issue #1377 about script editor parenthesis matching.
| * Fixed issue 1377 about script editor parenthesis matching.ElectricSolstice2015-02-191-2/+47
| |
* | New option to send canvas to render bufferJuan Linietsky2015-03-161-2/+2
|/ | | | | allows to use 3D environment effects for post processing such as Glow, Bloom, HDR, etc. in 2D.
* Total rows of text edit was calculated wrong, fixed issue #842marynate2015-01-131-1/+1
|
* -attempt to be friendlier on non english keyboardsJuan Linietsky2015-01-041-87/+89
|
* -Fix shortcuts for OSX code completion, fixes #1111Juan Linietsky2015-01-041-0/+4
| | | | -Fixed how translation fallbacks works, fixes #1011
* -added new code completion guess locations, closes #1032Juan Linietsky2015-01-031-9/+31
| | | | -moved commandline fix to mingw-only, should fix #1064
* -fix TextEdit shift-click functionality past begin and end of selection (#1004)Juan Linietsky2015-01-021-2689/+2725
|
* -fix readonly issues (#1018)Juan Linietsky2015-01-021-1/+11
|