godotengine / godot-proposals

Godot Improvement Proposals (GIPs)
MIT License
1.13k stars 86 forks source link

Allow splitting the script editor into several panes #414

Open Feniks-Gaming opened 4 years ago

Feniks-Gaming commented 4 years ago

Describe the project you are working on:

Applicable in any project.

Describe the problem or limitation you are having in your project:

As described in https://github.com/godotengine/godot-proposals/issues/28 Editor can get cramped at times and requires a lot of clicking suggested 4.0 undocable windows would be a huge improvement. While waiting for 4.0 intermediate step could be just allowing for script editor split that should be significantly easier to code and would just require couple of control nodes in a right places to support it.

Describe how this feature / enhancement will help you overcome this problem or limitation:

My proposed feature is to do this the way atom does it. By dragging code name we could split text editor into 2 and edit 2 or more scripts next to each other.

Show a mock up screenshots/video or a flow diagram explaining how your proposal will work:

https://streamable.com/yyaqq

Describe implementation detail for your proposal (in code), if possible:

It would require adding couple of instances of SplitContainers in appropriate places and it could be done fairly easily. For example we could right click on script name and select something like "Add Split view" and it would open 2nd code window next to a main code window in editor.

If this enhancement will not be used often, can it be worked around with a few lines of script?:

Would be used a lot can be worked around by opening multiple Godot projects but it's not ideal and can cause untended behaviour.

Is there a reason why this should be core and not an add-on in the asset library?:

It's a part of core behaviour of engine and great User Experience enhancement

Calinou commented 4 years ago

Implementing a splittable code editor is still a lot of work. I don't think it's something that can be done in a few days, especially if you want features like autocompletion to keep working correctly :slightly_smiling_face:

intervolver commented 1 year ago

Highly desirable functionality.

Calinou commented 1 year ago

@intervolver Please don't bump issues without contributing significant new information. Use the :+1: reaction button on the first post instead.

thygrrr commented 11 months ago

A first step on this journey seems to be done by the Script-IDE Godot Extension. This actually implies that perhaps this could be, in part, a plugin.

https://godotengine.org/asset-library/asset/2206

However, it's still missing vertical and horizontal splits. This is required for a healthy code editing DX because often you work on 2 or 3 scripts/classes/shaders/includes at once.

It also doesn't help with the shader editor. (Shader editor should be normal editor tabs)