Re: standardising TODOs

2006-04-30 Thread Jason van Zyl
On 28 Apr 06, at 11:06 AM 28 Apr 06, Kenney Westerhof wrote: On Fri, 28 Apr 2006, Brett Porter wrote: For people not using IntelliJ this doesn't work. Eclispe has 3 default tags: XXX - severe problem, but might work in some/most cases FIXME - indicates a workaround/too simple solution and sho

Re: standardising TODOs

2006-04-28 Thread Kenney Westerhof
On Fri, 28 Apr 2006, Brett Porter wrote: For people not using IntelliJ this doesn't work. Eclispe has 3 default tags: XXX - severe problem, but might work in some/most cases FIXME - indicates a workaround/too simple solution and should be addressed before a release TODO - improvements Ma

standardising TODOs

2006-04-28 Thread Brett Porter
Hi, Does anyone have any thoughts on standard marking for "TODO" elements? Currently, I've got mine set up: Important: (\bXXX\b.*|\bIMPORTANT\b.*|\btodo\b.*\!.*) ie, a line with XXX, IMPORTANT, or TODO with an ! on the line (eg TODO [!]: ...) Normal: (?m)\btodo\b[^!?\n]*$ ie, any line with TO