Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show more than 100 tasks //TODOs at once in Eclipse?

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.

like image 785
Sint Avatar asked Oct 19 '09 12:10

Sint


People also ask

How can I see all Todos in eclipse?

Go to Window → Show View → Tasks (Not TaskList). The new view will show up where the "Console" and "Problems" tabs are by default. As mentioned elsewhere, you can see them next to the scroll bar as little blue rectangles if you have the source file in question open.

How do I create a TODO comment in eclipse?

ctrl-shift-F9 was just a random example, to make you realize that any shortcut would ba as long to type as // TODO.


1 Answers

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:

Limit visible items per group to: 

And enter a value greater than 100.
Here is an illustration, with the mandatory hand-made circle (quite ugly in this case):

limit markers


As mentioned below, for Eclipse 4+, this has changed.
4.5 (mars) and 4.6 (Neon) actually have a "Use item limit" field.

settings

like image 142
VonC Avatar answered Sep 19 '22 20:09

VonC