When coding in AS3 in TextMate I like to put in some nice JavaDoc style comments:

/**
* Fetch up a dice from the server
* @param Number dice_num Which dice to get (1-6)
* @return NetDice Populated dice info object
* @access private
*/

All well and good.  I put a tab after the keyword declaration, so I'd type:

@param<tab>Number<tab>dice_num<tab>etc...

For the first row.  When I try to populate the return value:

@return<tab>...

The value gets automatically converted into this:

@&#x21A9;

Why does this happen?  What can I do to turn it off?  My workaround is to type this instead:

@return<space><tab>...

The go back and delete the space but that's just a PITA.  Any suggestions?

G.

--
Being drunk is feeling sophisticated without being able to say it.