| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Merge pull request #5737 from neikeq/pr-issue-5269 | Rémi Verschelde | 2016-07-23 | 1 | -0/+28 | |
| |\ | | | | | TextEdit: Scroll search results to the center | |||||
| | * | TextEdit: Center search results | Ignacio Etcheverry | 2016-07-21 | 1 | -0/+28 | |
| | | | ||||||
| * | | Fixed caret width on tabs | Paulb23 | 2016-07-18 | 1 | -2/+3 | |
| | | | ||||||
| * | | Merge pull request #5723 from Paulb23/toggle_breakpoint_gutter_issue_5712 | Rémi Verschelde | 2016-07-18 | 1 | -0/+2 | |
| |\ \ | | | | | | | Fixed toggle breakpoint gutter not updating when the game is running, issue 5712 | |||||
| | * | | Fixed breakpoint gutter toggle not updating when game is running, issue 5712 | Paulb23 | 2016-07-15 | 1 | -0/+2 | |
| | |/ | ||||||
| * / | Added block caret to TextEdit | Paulb23 | 2016-07-12 | 1 | -17/+38 | |
| |/ | ||||||
| * | Expose highlight all occurrences | Paulb23 | 2016-07-11 | 1 | -0/+8 | |
| | | ||||||
| * | Expose show line numbers | Paulb23 | 2016-07-11 | 1 | -1/+10 | |
| | | ||||||
| * | Added completion font colors | Paulb23 | 2016-07-11 | 1 | -1/+2 | |
| | | ||||||
| * | Fixed highlight all occurrences highlighing highlighted section | Paulb23 | 2016-07-10 | 1 | -0/+6 | |
| | | ||||||
| * | Remove unused variables (third pass) + dead code | Rémi Verschelde | 2016-07-07 | 1 | -1/+0 | |
| | | | | | Fixes various gcc 5.4.0 warnings for -Wunused-variable and -Wunused-but-set-variable | |||||
| * | Fix completion string check when column = 0 | George Marques | 2016-07-03 | 1 | -1/+1 | |
| | | ||||||
| * | Stop completion when the match is perfect | George Marques | 2016-07-03 | 1 | -0/+5 | |
| | | | | | to avoid the completion insisting showing up after a completion. | |||||
| * | Fix code completion sorting | George Marques | 2016-07-03 | 1 | -3/+11 | |
| | | ||||||
| * | Merge pull request #5419 from djrm/shortcuts | Rémi Verschelde | 2016-06-30 | 1 | -0/+1 | |
| |\ | | | | | Shortcuts for script switching in script Mode | |||||
| | * | Shortcuts for script switching in script Mode | Daniel J. Ramirez | 2016-06-26 | 1 | -0/+1 | |
| | | | ||||||
| * | | Merge pull request #5487 from Paulb23/function_highlighting_issue_5454 | Rémi Verschelde | 2016-06-30 | 1 | -0/+5 | |
| |\ \ | | | | | | | Fixed function highlighting with spaces | |||||
| | * | | Fixed function highlighting with spaces | Paulb23 | 2016-06-29 | 1 | -0/+5 | |
| | |/ | ||||||
| * / | Fixed selected text turning black, issue 5199 | Paulb23 | 2016-06-26 | 1 | -0/+1 | |
| |/ | ||||||
| * | Fix weird deselection behaviour with text field | Ignacio Etcheverry | 2016-06-24 | 1 | -0/+12 | |
| | | | | | | - TextEdit will now deselect if Ctrl+Left/Right is pressed - TextEdit and LineEdit no longer deselect text when Alt is pressed (except with Apple style keys) | |||||
| * | Merge pull request #5344 from Paulb23/code_completion_colors | Rémi Verschelde | 2016-06-22 | 1 | -7/+8 | |
| |\ | | | | | Code completion box colors | |||||
| | * | Added code completion existing color setting | Paulb23 | 2016-06-21 | 1 | -3/+2 | |
| | | | ||||||
| | * | Added code completion selected color setting | Paulb23 | 2016-06-21 | 1 | -3/+2 | |
| | | | ||||||
| | * | Added code completion background color setting | Paulb23 | 2016-06-21 | 1 | -1/+4 | |
| | | | ||||||
| * | | Fixed caret not drawing on focus regain | Paulb23 | 2016-06-20 | 1 | -0/+3 | |
| |/ | ||||||
| * | Merge pull request #5196 from vnen/similarity-code-completion | Rémi Verschelde | 2016-06-20 | 1 | -43/+38 | |
| |\ | | | | | Improve code completion search | |||||
| | * | Improve code completion search | George Marques | 2016-06-19 | 1 | -41/+31 | |
| | | | | | | | | | | | | | - List completion by subsequence match. - Case insensitive. - Sort completion list by similarity. | |||||
| | * | Fix TextEdit cursor position after undo remove text | George Marques | 2016-06-19 | 1 | -2/+7 | |
| | | | | | | | | | | | It was going to where the text started, now it goes to where the text ends. | |||||
| * | | Text Edit no longer draws caret on focus loss | Paulb23 | 2016-06-19 | 1 | -0/+15 | |
| |/ | ||||||
| * | TextEdit: Change font size with Ctrl+Mouse Wheel Up/Down | Ignacio Etcheverry | 2016-06-18 | 1 | -2/+2 | |
| | | ||||||
| * | does not fix the bug reported in #4326 and #4818, | Juan Linietsky | 2016-06-14 | 1 | -4/+12 | |
| | | | | | but at least make sure it throws and error and does not crash | |||||
| * | Fixed overloaded virtual functions with const vs none warning | marcelofg55 | 2016-06-12 | 1 | -1/+1 | |
| | | ||||||
| * | Caret blink no longer updates when hidden, issue 5100 | Paulb23 | 2016-06-08 | 1 | -1/+3 | |
| | | ||||||
| * | Improved breakpoint marker position, and scales with font size | Paulb23 | 2016-06-07 | 1 | -3/+6 | |
| | | ||||||
| * | Merge pull request #4916 from Paulb23/current_line_highlighting | Rémi Verschelde | 2016-05-31 | 1 | -13/+13 | |
| |\ | | | | | Current line highlighting draws behind line numbers and breakpont gutter | |||||
| | * | Current line draws behind line numbers and breakpont gutter | Paulb23 | 2016-05-30 | 1 | -13/+13 | |
| | | | ||||||
| * | | Fixed and improved search bar | Ignacio Etcheverry | 2016-05-30 | 1 | -0/+1 | |
| |/ | | | | | | | - Search no longer selects the results - Return focus to the text editor when hiding the bar - Fix connecting to invalid signal - Update/redraw the text editor after searching | |||||
| * | Merge pull request #4823 from Paulb23/fix_backspace_selection_redo_crash | Rémi Verschelde | 2016-05-29 | 1 | -1/+3 | |
| |\ | | | | | Fix crash when redoing backspace to clear selection | |||||
| | * | Fix crash when redoing backspace to clear selection | Paulb23 | 2016-05-26 | 1 | -1/+3 | |
| | | | ||||||
| * | | Merge pull request #4822 from Paulb23/breakpoint_marker_issue_4750 | Rémi Verschelde | 2016-05-29 | 1 | -5/+54 | |
| |\ \ | | | | | | | Added breakpoint markers, issue 4750 | |||||
| | * | | Added breakpoint markers, issue 4750 | Paulb23 | 2016-05-26 | 1 | -5/+54 | |
| | |/ | ||||||
| * | | Merge pull request #4812 from neikeq/pr-search-bar | Rémi Verschelde | 2016-05-29 | 1 | -18/+76 | |
| |\ \ | | | | | | | ScriptEditor/ShaderEditor: Replace find/replace dialog with a bar | |||||
| | * | | ScriptEditor/ShaderEditor: Replace find/replace dialog with a bar | Ignacio Etcheverry | 2016-05-29 | 1 | -10/+57 | |
| | | | | ||||||
| | * | | TextEdit: Improve search method to avoid overlapping results | Ignacio Etcheverry | 2016-05-28 | 1 | -7/+17 | |
| | | | | ||||||
| | * | | TextEdit: Avoid capturing KEY_ESCAPE when there is no completion hint | Ignacio Etcheverry | 2016-05-28 | 1 | -1/+2 | |
| | |/ | ||||||
| * / | Finalized DynamicFont implementation | Juan Linietsky | 2016-05-29 | 1 | -1/+1 | |
| |/ | | | | | | -DynamicFont uses Freetype by default -Editor fonts are now scalable thanks to this -Cleaned up documentation browser and added fonts for this | |||||
| * | Merge pull request #4659 from Paulb23/hex_notation_highlighting | Rémi Verschelde | 2016-05-17 | 1 | -7/+23 | |
| |\ | | | | | Fixed hex notation highlighting | |||||
| | * | Fixed hex notation highlighting | Paulb23 | 2016-05-15 | 1 | -7/+23 | |
| | | | ||||||
| * | | Default editing popup for LineEdit and TextEdit | Juan Linietsky | 2016-05-16 | 1 | -0/+66 | |
| |/ | ||||||
| * | Bind caret blink to gdscript and properties | Paulb23 | 2016-05-11 | 1 | -1/+6 | |
| | | ||||||
