I've just started to try out TextMate :). I've created a little snippet called vam (short for variable and method) that looks like this<br><br><div style="margin-left: 40px;">{<br>    int    ${1:var}; <br>}<br><br>
-(void)    set${1:var}:(int) n;<br></div><br><br>So when I enter vam and hit tab, I am presented with the following chunk<br><br><div style="margin-left: 40px;">{<br>    int    var; <br>}<br><br>-(void)    setvar:(int) n;
<br></div><br>where var is highlighted. If I start to type numerator the chunk changes to<br><br><div style="margin-left: 40px;">{<br>    int    numerator; <br>}<br><br>-(void)    setnumerator:(int) n;<br></div><br>However I would like setnumerator to be outputted as setNumerator.
<br><br>Is there a way to do this?<br><br>Thanks Bob<br>