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!
CodePudding user response:
Better to:
- Close the View and ignore it.
- 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