Ed Merks
Ed Merks
It works for me. And I too see no option to hide and show it. If you use Open With from the context menu it’s really the Java Editor that...
Note the difference in the icon for test2.java versus that for mainTender.java in the Package Explorer view? The latter is in a source folder but the former is not, i.e.,...
There seem to be quite a few dependencies on this in SimRel: 
I don't think this is feasible. Reading the Javadoc: https://help.eclipse.org/latest/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fapi%2Forg%2Feclipse%2Fswt%2Fdnd%2FDragSource.html it says that DragSource "defines the type of data that is available for dragging and the set of operations that...
Here's how it actually works:  Application developers using a viewer must add the drag support explicitly via addDragSupport. When they do that, they must decide the operations, the transfer...
The potential merit is clear. Once you have a concrete solution to propose via a PR that can be peer reviewed, we can make further progress.
If the installation folder name contains a space, this is a known problem: https://github.com/eclipse-platform/eclipse.platform.ui/issues/1757
Unfortunately not until the first milestone, then updates will also be available here: https://download.eclipse.org/releases/milestone https://download.eclipse.org/releases/2024-06 according to this schedule: https://github.com/eclipse-simrel/.github/blob/main/wiki/SimRel/2024-06.md
This API `org.eclipse.core.resources.IProject.getWorkingLocation(String)` provides general access of the things located under `.projects` and individual downstream technologies mange those. I assume those aren't all read on startup and I assume you're...
@jukzi I wonder if the following very simple isolated change to org.eclipse.core.internal.localstore.SafeFileOutputStream.commit() might address the primary concerns raised in this issue: ``` private static long SMALL_FILE_LENGTH = Long.parseLong(System.getProperty("foo", "1000")); //$NON-NLS-1$...