Home > Net >  Eclipse: How to remove all TODO tagged comments?
Eclipse: How to remove all TODO tagged comments?

Time:04-01

In Eclipse, is there any way, e.g., built-in functionality or short cuts of Eclipse, to REMOVE ALL comments tagged with TODO?

So far I can click and open each file via the matched TODO items as shown in the picture, but it is impossible to finish all tasks manually if we have thousands of items. Looking for advice/help, Thanks!

enter image description here

CodePudding user response:

Better to:

  1. Close the View and ignore it.
  2. Find the Task Tags preference page for the language you're using, remove TODO from the list of tag words or modify it to be something more specific like "TODO: ahtasham".

CodePudding user response:

You can use regex to find and replace the characters with empty string, to select any line containing TODO you can search for REGEX: (^.*TODO. ) I am also attaching a screenshot of how to do it enter image description here

  • Related