如何在项目资源管理器中显示Eclipse Move上下文菜单

时间:2014-06-30 05:47:54

标签: eclipse eclipse-plugin contextmenu

我注意到默认情况下Eclipse" Move"当文件夹和文件一次多选时,不显示上下文菜单。

我的场景是我要显示我的上下文菜单 - 在多选时移动某些类型的文件和文件夹。

  <and>
                  <iterate
                      operator="or">
                <with
                   variable="org.eclipse.ui.selection">

                   <adapt
                         type="org.eclipse.core.resources.IResource">
                      <or>
                         <test    property="com.sap.ndb.studio.dwb.team.ui.expressions.isContainedInSharedProject" value = "true"/>
                         <test property="com.sap.ndb.studio.dwb.team.ui.expressions.isFile"  value="true"/>
                         <test property="com.sap.ndb.studio.dwb.team.ui.expressions.isFolder"  value="true"/>
                      </or>
                   </adapt>

                 </with>
              </iterate>
</and>

如何启用类型文件夹的上下文菜单和多选的文件?

此致 Pavitra

1 个答案:

答案 0 :(得分:0)

Project explorer中,选择您要移动的文件

右键单击其中一个,选择Refactor,默认情况下Move...选项可用。 或者只是您可以使用快捷方式移动:Alt+Shift+V

enter image description here

如果没有启用或不存在,请在eclipse中转到Window菜单, 选择Customize perspective...

enter image description here

将显示带有标签的窗口。 选择Menu visibility标签,然后展开Refactor,然后选中Move...复选框。

enter image description here