summaryrefslogtreecommitdiffstats
path: root/editor/code_editor.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix toggle scripts panel to allow using shortcut in other areasYuri Roubinsky2019-12-171-3/+10
| |
* | Prevent showing toggle scripts panel switch in shader editorYuri Roubinsky2019-12-171-1/+8
| |
* | Moves switch for show scripts panel from File menu to status barYuri Roubinsky2019-12-151-0/+11
| |
* | Fixes Delete Line doesn't delete first line in scriptHaoyu Qiu2019-12-091-13/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, match multi-line delete behavior in script with single line: If there are four lines: A, B, C, D. Before the change: Delete C: Cursor lands on D Delete B and C: Cursor lands on A After the change: Delete C: Cursor lands on D Delete B and C: Cursor lands on D
* | Center Script Editor when jumping to bookmarks/breakpointsTomasz Chabora2019-12-011-0/+2
|/
* Fix incorrect error label color when switching from light to dark themeYuri Roubinsky2019-11-141-2/+5
|
* Fix "matches" label color in light themeYuri Roubinsky2019-11-141-1/+1
|
* Code editor: select next occurrence after ReplacelupoDharkael2019-10-141-1/+3
|
* Fix text search bar not correctly switching from replacing to just searchingMichael Alexsander2019-10-011-2/+2
|
* Fix editor infinit loop in search_prevamakarenko2019-09-021-8/+6
| | | | Fixes godotengine#31328
* Reorganize & rename text editor settings categoriesCykyrios2019-09-011-20/+20
| | | | | | | | Add Navigation category for scroll and minimap settings. Rename Line Numbers category to Appearance. Rename Open Scripts category to Script List. Rename "Draw Minimap" setting to "Show Minimap" (this is more consistent with other settings). Reorder settings by category in code_editor.cpp to match settings list
* Add minimap to text_editPaulb232019-08-211-0/+2
|
* Fix matches result in the code search not appearing when the quantity is 0Michael Alexsander Silva Dias2019-08-141-11/+12
|
* Merge pull request #31329 from KoBeWi/vscode_ftwRémi Verschelde2019-08-141-24/+35
|\ | | | | Tweak the behavior of search/replace bar
| * Tweak the behavior of search/replace barTomasz Chabora2019-08-131-24/+35
| |
* | Merge pull request #31355 from nekomatata/fix-select-prev-freezeRémi Verschelde2019-08-131-6/+8
|\ \ | |/ |/| Fixed freeze on search previous
| * Fixed freeze on search_prev (missing condition for searching from a previous ↵PouleyKetchoupp2019-08-131-6/+8
| | | | | | | | | | | | result, now the same as search_next) Fixes #31328
* | Make the script search have a proper matches counterMichael Alexsander Silva Dias2019-08-131-3/+21
|/
* Select found text in Script EditorTomasz Chabora2019-08-021-0/+1
|
* Enable the script editor's "Auto Brace Complete" by defaultHugo Locurcio2019-07-181-7/+7
| | | | | | | This also adds a setting hint for the "Code Complete Delay" setting and cleans up some duplicated default setting values. This closes #30662.
* i18n: Sync translation template with current sourceRémi Verschelde2019-07-091-1/+1
|
* Display a count of matches when searching in the code editorBojidar Marinov2019-07-081-1/+40
| | | | Fixes #14513
* Merge pull request #30326 from Anutrix/replace-all-fix-for-nowRémi Verschelde2019-07-051-1/+5
|\ | | | | Got replace-all working without breaking search
| * Got replace-all working without breaking searchunknown2019-07-051-1/+5
| |
* | Show icons for code completion optionsGeequlim2019-07-051-6/+45
|/
* Parse more informations for code completionGeequlim2019-07-041-7/+8
|
* Fixed search highlight when search text not found or emptyunknown2019-06-271-0/+2
|
* Center script line when double clicked on error in debuggerDawid Wdowiak2019-06-231-0/+5
|
* Merge pull request #28787 from mitchcurtis/fix-28059Rémi Verschelde2019-06-191-0/+24
|\ | | | | Script Text Editor: respect Move Down and Move Up shortcuts on macOS
| * Script Text Editor: respect Move Down and Move Up shortcuts on macOSMitch Curtis2019-05-091-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Handle shortcuts in CodeTextEditor::_input() so that we get them before its text_editor's TextEdit::_gui_input() function does. If we don't, that function will execute the following code: if (k->get_shift()) { _pre_shift_selection(); } #ifdef APPLE_STYLE_KEYS if (k->get_command()) { cursor_set_line(0); } else #endif So using Command+Shift+Up for the Move Up shortcut would just result in selecting all text to the beginning of the document, rather than moving the current line up. Fixes #28059.
* | Merge pull request #28766 from pgoral/editor_validation_issueRémi Verschelde2019-06-171-1/+4
|\ \ | | | | | | Changing method signature in other class in not recognized in working…
| * | Changing method signature in other class in not recognized in working class ↵Goral2019-05-291-1/+4
| |/ | | | | | | in typed GDScript #28685
* | Merge pull request #29306 from qarmin/small_code_fixesRémi Verschelde2019-06-121-1/+1
|\ \ | | | | | | Small fixes to unrechable code, possibly overflows, using NULL pointers
| * | Small fixes to unrechable code, possibly overflows, using NULL pointersqarmin2019-06-031-1/+1
| | |
* | | Merge pull request #29262 from DarknessCatt/issue-27476Rémi Verschelde2019-06-111-0/+18
|\ \ \ | | | | | | | | Automatically add new line to scripts
| * | | Automatically add new line to scriptsMatheus Lima Cunha2019-05-291-0/+18
| | | |
* | | | Fix memory leak in Text Editor and FileSystem Dockqarmin2019-05-301-8/+8
| |/ / |/| |
* | | Merge pull request #28218 from KoBeWi/b00km4rk5Rémi Verschelde2019-05-201-0/+73
|\ \ \ | | | | | | | | Add bookmarks for easier code navigation
| * | | Add bookmarks for easier code navigationTomasz Chabora2019-05-051-0/+73
| | |/ | |/|
* / | Issue-28355 - show spaces in editormiwanczuk2019-04-301-0/+1
|/ /
* | Merge pull request #25751 from Calinou/faster-script-error-checkingRémi Verschelde2019-04-301-1/+3
|\ \ | | | | | | Allow floating-point values in the idle parse delay editor setting
| * | Allow floating-point values in the idle parse delay editor settingHugo Locurcio2019-04-261-1/+3
| | | | | | | | | | | | | | | This also makes value changes effective without having to restart the editor.
* | | Added a marker in text_edit that tells which row is executing.Rikhardur Bjarni Einarsson2019-04-231-0/+8
|/ /
* | Merge pull request #28234 from Paulb23/connection_info_on_scriptRémi Verschelde2019-04-221-0/+1
|\ \ | | | | | | Display connection information in the script editor
| * | Display connection information in the script editorPaulb232019-04-201-0/+1
| |/
* / Restore script editor state between sessionsPaulb232019-04-131-1/+41
|/
* Find the previous match in script editor when pressing Shift + EnterHugo Locurcio2019-04-061-1/+6
| | | | This allows cycling through matches more efficiently.
* Merge pull request #25782 from hsandt/feature/fix-toggle-comment-indentRémi Verschelde2019-03-161-0/+73
|\ | | | | Feature/fix toggle comment indent
| * [Code Editor] Fixed toggle_inline_comment moving cursor position by 1 even ↵hsandt2019-02-041-4/+5
| | | | | | | | with longer delimiter like "//"
| * [Script Editor] Refactored ScriptTextEditor::_edit_option by extracting ↵hsandt2019-02-041-0/+72
| | | | | | | | | | | | EDIT_TOGGLE_COMMENT case CodeEditor::toggle_inline_comment is now used by both ScriptTextEditor and ShaderEditor