eveo
eveo

Reputation: 2843

All my code in sublime text converted to tags and i cant reverse it

I pressed something in Sublime Text 2 and I have no idea how to reverse it. All my code looks like the following:

enter image description here

Upvotes: 1

Views: 71

Answers (1)

Patrice Gahide
Patrice Gahide

Reputation: 3754

When working with an HTML document that is heavy on attributes, it can be helpful to hide everything but the element type. This is extremely useful when working with something like jQuery UI that have long class names, titles, data, etc.

To hide:

K,T (OS X)

CtrlK,CtrlT (Windows/Linux)

To show again:

K,0 (OS X)

CtrlK,Ctrl0 (Windows/Linux)

(that's the numeral 0, not the letter O)

Upvotes: 4

Related Questions