如何将 RunToLine 作为 actionSet 添加到我的自定义透视外观?

How to add RunToLine as actionSet to my custom perspective look?

<extension point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension 
            targetID="ui.perspective.MyPerspective"> 
             <actionSet id="org.eclipse.debug.ui.debugActionSet"/> 
            <actionSet id="org.eclipse.debug.ui.breakpointActionSet"/> 
            <actionSet id="org.eclipse.debug.ui.launchActionSet"/>

        </perspectiveExtension> 
  </extension>

我有一个扩展点可以根据 actionSet 显示调试工具栏。但只有 RunToLine 未显示。我们是否也可以选择在工具栏中显示该图标?

org.eclipse.debug.ui plug-in 默认禁用此工具栏项目:

<extension point="org.eclipse.ui.perspectiveExtensions">
   <perspectiveExtension targetID="*">
      <hiddenToolBarItem id="org.eclipse.debug.ui.commands.RunToLine"/>
   </perspectiveExtension>
</extension>

这意味着您必须使用 'Window > Perspective > Customize Perspective' 来启用 'Tool Bar Visbility' 部分中的项目。