4

通过使用Eclipse快捷方式 ( CTRL++ Shift) 将同时显示 ( R)文件和 ( ) 文件。 像那样
srctarget

在此处输入图像描述

问题是
有时
我错误地选择了目标文件然后我更新了我的更改
构建后我将看不到新的更改!
那是因为我更新了错误的文件(目标)

所以任何想法
如何通过 Eclipse 快捷方式 ( ++ )只显示 ( src) 文件而不是 ( ) 文件? targetCTRLShiftR

4

2 回答 2

6

The quick and (dirty way) :

Right click on a target folder(s)
Go to folder(s) properties,
Mark folder as Derived like that.
enter image description here Derived entities are excluded from searching by default like that. enter image description here

The (safe way) :

By create a working set
enter image description here That include only those entities you want searched and search only within that working set.
In our case will include ALL without target folder(s).

Note : This answer is related to
Exclude folders from Eclipse search

于 2013-08-22T14:08:37.433 回答
1

在 java build-path 上的 project-settings 中,您会在源代码中找到这样的复选框:

在此处输入图像描述

禁用它,因为不会将目标文件夹中的文件获取到您的视图中。所以你不会通过 Eclipse 快捷方式 ( ++)CTRL找到ShiftR

于 2013-08-22T12:46:53.497 回答