Is it possible to remove the empty placeholder after moving the existing views in JavaPerspective? #3081
-
For users who have installed the Copilot plugin, we're working on finding the most suitable location for the Chat view. As shown in the screenshot below, we’ve refined the layout in the Java Perspective by stacking the Tasks, Outline, and Chat views together for a cleaner look. However, two empty placeholders still remain in the layout. What I did is: <perspectiveExtension
targetID="org.eclipse.jdt.ui.JavaPerspective">
<view
id="com.microsoft.copilot.eclipse.ui.chat.ChatView"
minimized="false"
ratio="0.66"
relationship="right"
relative="org.eclipse.ui.editorss">
</view>
<view
id="org.eclipse.ui.views.ContentOutline"
minimized="false"
relationship="stack"
relative="com.microsoft.copilot.eclipse.ui.chat.ChatView">
</view>
<view
id="org.eclipse.mylyn.tasks.ui.views.tasks"
minimized="false"
relationship="stack"
relative="com.microsoft.copilot.eclipse.ui.chat.ChatView">
</view>
</perspectiveExtension> Currently we only achieved this expectation in the next version 2025-09 by changing the original position of tasks view in this PR below. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Have you tried
|
Beta Was this translation helpful? Give feedback.
Crazy. I would propose, simply ignore Mylyn and define
People using older Mylyn versions who would be annoyed by Mylyn Tasks view could close / move it manually.
For the future, once Mylyn fix is integrated, the problem will disappear.
Don't waste more time on that.