Hello.
When using the TODO and FIXME tags, I ran into these problems.
1) Simple "FIXME" and "TODO" tags without the ending colon ":" character are not added to the todo list. This is a problem, because other IDE's like Zend Studio recognize versions without ending colon ":" and when I use projects from Zend in phpEd, this poses a huge problem, because the todo lists are not generated at all. Could you please change the todo list generating behavior, so "FIXME" and "TODO" tags without ending colon are recognized too? Example follows:
// TODO: this is recognized properly and added to the todo list
// TODO this is NOT recognized properly and is missing in todo list, also single TODO without the ending colon and without any text is not recognized
// FIXME: this is recognized properly and added to the todo list
// FIXME this is NOT recognized properly and is missing in todo list, also single FIXME without the ending colon and without any text is not recognized |
2) In some cases, the FIXME and TODO are not recognized. I've noticed, that when a single line comment is inside a multi-line comment, the phpEd does not recognize FIXME and TODO tags under these conditions. Example follows:
/* FIXME: this is recognized properly and added to the todo list
// some unimportant comment
commented_function(); // FIXME: this is NOT recognized and is missing in todo list
commented_function(); // TODO: this is NOT recognized and is missing in todo list
*/ |