aboutsummaryrefslogtreecommitdiff
path: root/editor/plugins/script_editor_plugin.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Move Theme options to submenuChaosus2018-06-211-33/+47
|
* Merge pull request #19334 from guilhermefelipecgs/fix_popupJuan Linietsky2018-06-081-10/+15
|\ | | | | Fixes popup_centered_* methods, dialogs with wrong sizes and visual script editor
| * Fix #16069, #19292, #19267 and #18940Guilherme Felipe2018-06-061-10/+15
| |
* | Fix theme not updating with changesGuilherme Felipe2018-06-061-0/+3
|/
* Show opened script or help namevolzhs2018-06-061-4/+16
|
* Small tooltip changes.Michael Alexsander Silva Dias2018-05-181-1/+2
|
* Moved inspector functionality from EditorNode to InspectorDock.Daniel J. Ramirez2018-05-171-1/+1
|
* Changed the name displayed in the Script tab for built-in script with a more ↵Samuele Zolfanelli2018-05-161-1/+2
| | | | descriptive one
* Add button hbox with alphabetic sort toggle above methods outline.Julian Murgia2018-05-111-2/+36
|
* Change ".." punctuation for "..." in editor strings (#16507)Hugo Locurcio2018-04-221-3/+3
|
* Merge pull request #16571 from Zylann/find_in_filesJuan Linietsky2018-04-081-67/+105
|\ | | | | Added find & replace in files
| * Added find & replace in filesMarc Gilleron2018-02-191-67/+105
| |
* | Abstracted the syntax highlighter from text editPaulb232018-04-021-0/+22
| |
* | ScriptEditor: Use EditorSettings instead of hardcoded values in constructor.Andreas Haas2018-03-011-5/+5
| |
* | Fix builtin script cannot open from debug stacksgeequlim2018-02-211-1/+1
| |
* | Merge pull request #16455 from volzhs/close-docsRémi Verschelde2018-02-201-3/+5
|\ \ | | | | | | Keep to show current script when closing all docs
| * | Keep to show current script when closing all docsvolzhs2018-02-201-3/+5
| | | | | | | | | | | | | | | | | | | | | also fix error when removing multiple tabs from TabContainer at same frame. like closing multiple docs at once. Fix #16403
* | | option to disable sort in script listianb962018-02-141-1/+4
|/ /
* | Added "allow_reselect" property to ItemList and enabled it for the ↵Michael Alexsander Silva Dias2018-02-141-2/+2
| | | | | | | | method/help lists.
* | Merge pull request #16518 from Paulb23/fix_members_overview_offsetRémi Verschelde2018-02-131-2/+3
|\ \ | | | | | | Fixed members overview not scrolling to correct line
| * | Fixed members overview not scrolling to correct linePaulb232018-02-091-2/+3
| |/
* | Merge pull request #16383 from binbitten/issue_16335Rémi Verschelde2018-02-131-12/+26
|\ \ | | | | | | Fix spaces and quotes in external editor flags
| * | Fix spaces and quotes in external editor flagsbinbitten2018-02-041-12/+26
| |/
* / Changes for the "Recent Scripts" menu.Michael Alexsander Silva Dias2018-02-021-36/+47
|/
* Fix external editors always opening on scene changeBernhard Liebl2018-01-141-4/+8
|
* External editor fixesIgnacio Etcheverry2018-01-091-15/+13
| | | | | | - Fix VS Code opening on the previous line to the desired one. - Fix running MonoDevelop without the line and column parameters. - Fix `ScriptEditor::_goto_script_line` not working with language overriden external editors.
* Don't delete edit menu too early when closing script tabsBernhard Liebl2018-01-081-1/+3
|
* i18n: Sync translation templates with current sourceRémi Verschelde2018-01-061-1/+1
|
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-0/+1
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Add Show In File System to script editor tabssersoong2018-01-021-1/+11
|
* Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Add missing parameter namesPoommetee Ketson2017-12-251-3/+3
|
* Merge pull request #14827 from RayKoopa/editor_patchworkNoshyaar2017-12-251-1/+1
|\ | | | | Some Editor UI patchwork
| * Limit code editor minimum width, clear Scene node subresource menu before ↵Ray Koopa2017-12-191-1/+1
| | | | | | | | refilling it
* | Some fixes for the Script Editor and dead code cleaning.Michael Alexsander Silva Dias2017-12-181-38/+6
|/
* Merge pull request #14613 from voithos/fold-jump-bugfixRémi Verschelde2017-12-161-4/+4
|\ | | | | Account for folded code blocks when navigating via members list
| * Account for folded code blocks when navigating via members listZaven Muradyan2017-12-121-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, the editor would attempt to set the scroll position to the function's line number, but this would result in an invalid scroll whenever functions above the target were folded. This changes callback to use a combination of `goto_line` and `set_edit_state` to navigate to the target line and reset the cursor to column 0. Using `goto_line` also has the side effect of automatically unfolding the target function, which seems like useful behavior. Fixes #14572.
* | Added open_script_create_dialog funcWill Nations2017-12-131-0/+6
|/
* Add 'copy script path' to script editor pluginsersoong2017-12-071-0/+12
|
* Visual fixesDaniel J. Ramirez2017-11-201-1/+1
| | | | | Added some icons (Including the onion one) Fixed text editor ellipsis style and editor tabs
* Add close other tabs to Script Editorsersoong2017-11-201-1/+37
|
* Merge pull request #12988 from akien-mga/xdg-home-pathsRémi Verschelde2017-11-201-1/+1
|\ | | | | Add support for XDG Base Directory spec
| * Use new XDG folders to dehardcode pathsRémi Verschelde2017-11-191-1/+1
| |
| * EditorSettings: Rename settings_path to settings_dirRémi Verschelde2017-11-171-1/+1
| | | | | | | | Also to prepare for upcoming refactoring for XDG support.
* | fix set_current_tab: Indexp_current=-1 out of sizeOmar Al Halabi2017-11-191-1/+1
|/
* remove debug msgIan2017-11-131-2/+0
|
* add script list drag n dropIan2017-11-121-26/+166
|
* move item up/down context menu and shortcutIan2017-11-121-17/+93
|
* add script editor list context menuIan2017-11-121-4/+55
|
* Added hotkey for Continue actionChaosus2017-10-251-1/+1
|