As the title suggests, I would like to be able to use the Document Method snippet to add comments AFTER the method, as well as before.
Like this:
/*
* Documentation!
*/
void foo()
{
int x = 1;
}
// End of 'foo'
Perhaps the snippet would look something like this:
/*
* Documentation!
*/
$Method$
// End of '$SymbolName$'
I'm not even sure if this is possible, let alone a good idea, but it would make Document Method even more useful!