RobertJoseph
RobertJoseph

Reputation: 8158

Sublime Text: How to select an everything contained in an HTML element?

I'm running Sublime Text 2 on OS X.

<table>
 ...
</table>

If my cursor is at the beginning of the opening table tag is it possible to automatically select everything down to (and including) the ending tag? I have the Emmet plugin installed but can't figure out if this is possible.

Using Emmet ⌘+⇧+k selects both the beginning and ending tag but not the text in between those tags (which is my goal).

Upvotes: 1

Views: 58

Answers (1)

Muhammet
Muhammet

Reputation: 3308

I use Ctrl+, in Windows. It should be Ctrl+D in OS X.

Emmet Documentation

Upvotes: 2

Related Questions