Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I switched from Textmate to Sublime in the past few months and have been busy trying to re-train my brain and fingers to use the new shortcut keys.

In Textmate, when editing an HTML documents, I could highlight text and do Command+b to wrap the selected text in <b></b> tags or Command+i to wrap in <i></i>...among various other commands/tags.

So, is there a way to do that in Sublime? I know I can type b, TAB to create an empty set of <b></b> tags, but I want to be able to wrap selected text in various tags.

share|improve this question
If Sublime Text has a user forum or mailing list you're probably better off asking this question there. – Torsten Walter Aug 14 '12 at 11:28
I've had fairly decent success asking Sublime Text questions here and the responses tend to be faster then the Sublime forums. Always worth a try. :) – Shpigford Aug 14 '12 at 11:33
1  
Btw you can type cltr+alt+. to close open tag. – Jure C. Aug 14 '12 at 12:55

2 Answers

up vote 8 down vote accepted

ctrl+shift+w

Then type which tag you want (i, b, etc.).

share|improve this answer
So it's the same as in TextMate then. Great :) – Torsten Walter Aug 14 '12 at 23:29
Didn't know about this in TextMate either...just always used the specific commands for bold and italic. This is obviously a bit more flexible. :) – Shpigford Aug 27 '12 at 14:18
I also didn't know about it in TextMate! – Matt York Aug 27 '12 at 18:04
Hate to bump such an old answer, but it's still relevant in google searches - windows command is alt + shift + w – Raystafarian May 3 at 10:36
    { "keys": ["super+alt+b"], "command": "insert_snippet", "args": {"contents": "<strong>${0:$SELECTION}</strong>" } },
{ "keys": ["super+alt+i"], "command": "insert_snippet", "args": {"contents": "<em>${0:$SELECTION}</em>" } }

Above can be added to user key bindings file to have selection surrounded by strong tags upon pressing Cmd+Alt+b and by italic tags upon pressing Cmd+Alt+i (on Mac).

Source: https://gist.github.com/3436510

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.