Reputation: 2843
I pressed something in Sublime Text 2 and I have no idea how to reverse it. All my code looks like the following:
Upvotes: 1
Views: 71
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