When writing C++ code in TextMate, it appears that the method names are
not well detected when I use the throw\([^\)]*\) keyword on my method
declarations, as in this example:<br><br>void Foo::Bar(int argument) const throw()
<br>{<br>   /* ... */<br>}<br><br>or like this:<br><br>
void Foo::Bar(int argument) const throw(std:exception, int)<br>
{<br>
   /* ... */<br>   throw std::exception("exception message");<br>   /* ... */<br>   throw 42;<br>   /* ... */<br>
}<br><br>When
I use the throw keyword on my method declarations, the method name
detected by TextMate is "throw", which isn't really useful, especially
when all the method names are detected as "throw". How can I fix this
to ensure TextMates resolves the proper names?
<br><br>Thanks for your help,<br clear="all"><span class="sg"><br>Marc-Antoine Courteau</span><br>