TooBug / CompactExpandCss

a sublime plugin to compact and expand css code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CompactExpandCss

a sublime plugin to compact and expand css code

original code: https://gist.github.com/2863474

install

download the files, and put them in a folder called CompactExpandCss , and then put the folder in packages folder.

usage

select the css code

*{
	padding:0
}

and press ctrl + alt(command) + [ , the code becomes

*{ padding:0}

select the css code and press ctrl + alt(command) + ] , the code becomes

*{
	padding:0
}

About

a sublime plugin to compact and expand css code


Languages

Language:Python 89.7%Language:JavaScript 10.3%