I'm looking to do search replace with regular expressions in Sublime Text 2. The documentation on this is rather anemic. Specifically, I want to do a replace on groups, so something like converting this text:
Hello my name is bob
And this search term:
Find what: my name is (\w)+
Replace with: my name used to be $(1)
The search term works just fine but I can't figure out a way to actually do a replace using the regexp group.

