如何在 Eclipse 中同时显示 100 多个任务//TODO?
正如标题所说,如何在 Eclipse 的“任务”窗口中同时显示 100 个以上的任务?或者,如何浏览超过 100 项的任务?
我的项目中有很多 .c 文件,其中有很多 //TODO
当我转到“任务”窗口时,它显示:
筛选匹配的 158 项中的 100 项
我找不到一个合理的方式来跳过第 100 个项目...也就是说,我没有看到按钮,或者右键单击选项显示转到下一个 100 个项目..
我当前使用的疯狂方式是按不同的列进行排序,即资源、路径、位置、升序和降序..然后将粘贴复制到外部应用程序并删除重复项..这不会'如果我有超过 200 个任务,不能保证我能完成所有任务。
必须有更好的方法!
这是在 Ubuntu 9.04 上运行标准 Eclipse 3.5 CDT 安装,但在 3.4 和 3.3 上也有这个问题。
As the title says, how do I display more than 100 tasks at once in Tasks window in Eclipse? Alternatively, how do I browse tasks past 100?
I have a lot of .c files in my project with many //TODOs
When I go to Tasks window, it shows:
Filter matched 100 of 158 items
I can't find a sane way to go past item 100... that is, I don't see a button, or right click option saying go to next 100 items..
The insane way I use currently, is to sort by different columns, ie resource, path, location, ascending AND descending.. then copy paste to outside app and cut out duplicates.. this doesn't guarantee I get every task if I have more than 200 tasks.
There has to be a better way!
This is running Standard Eclipse 3.5 CDT installation on Ubuntu 9.04., but had this problem on 3.4 and 3.3, as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
任务视图右上角的小箭头显示带有“首选项”项目的菜单。
在“首选项”对话框中,您可以定义:
并输入大于 100 的值。
这是一个插图,带有强制性的手工制作的圆圈(在本例中相当难看):
As 提到 下面,针对 Eclipse 4+,这已经改变了。
4.5 (mars) 和 4.6 (Neon) 实际上有一个“
使用物品限制
”字段。The little arrow at the top-right side of the Taks view display a menu with the 'Preferences' item.
In the 'Preferences' dialog , you can define:
And enter a value greater than 100.
Here is an illustration, with the mandatory hand-made circle (quite ugly in this case):
As mentioned below, for Eclipse 4+, this has changed.
4.5 (mars) and 4.6 (Neon) actually have a "
Use item limit
" field.在 Eclipse 版本中:4.2.2 没有首选项或属性。您必须单击箭头并转到“配置内容”,然后更改对话框右下侧显示“每组可见项目数:”的字段。
In Eclipse Version: 4.2.2 There is no preferences or properties. You must click the arrow and go to "Configure Contents" Then change the field that says "Number of items visible per group: " in the bottom right side of the dialog box.
在任务视图的标题栏中,有一个向下箭头(右到结束 X 的左侧)。它会打开一个下拉菜单,其中包含“属性”条目,可让您指定要显示的任务数量。
In the title bar of the tasks view, there is a downward arrow (right to the left of the closing X). It opens a dropdown menu that has a "Properties" entry, which allows you to specify how many tasks to show.
单击任务窗口中的查看菜单(向下的小三角形),然后单击首选项。有一个“将每个组的可见项目限制为:”字段,其默认值为 100。
Click the View menu in the Tasks window (the little downwards-pointing triangle) and click Preferences. There's a "Limit visible items per group to:" field that has a default value of 100.
在 Eclipse Neon 中,它更改为
任务视图的标题栏->向下箭头->配置内容->使用项目限制
默认情况下设置为 100,可以将其更改为您想要的任何数字,或者取消选中“使用项目限制”框,以查看所有问题/任务。
警告:必须对每个窗口执行此操作,因为我不确定如何在全球范围内执行此操作。
In Eclipse Neon , it is changed to
Title bar of tasks view->Downward arrow -> Configure Contents -> Use Item Limits
It is set to 100 by default, either change it to any number you want , or uncheck the Use Item Limits box, to see all the issues/tasks .
caveat: It has to done for every window , as I am not sure how to do it globally.