Hi,
How to sort a file or a selected area according to length of lines in sublime.
I need to do it for css Properties
Like:
#topbar{
background-image:url(“images/abc.png”);
background-position: 12px 13px;
border-style: solid;
font-size: 1px;
left: 36px;
margin-top: 10px;
top: 23px;
vertical-align: center;
z-index: 1;
}
should convert into:
#topbar{
left: 36px;
top: 23px;
z-index: 1;
font-size: 1px;
margin-top: 10px;
border-style: solid;
vertical-align: center;
background-position: 12px 13px;
background-image:url(“images/abc.png”);
}
please, anyone can help me…
Thanks