Sublime Forum

Auto Alignment Plugin Settings

#1

Is it possible with Auto Alignment Plugin to have this result? If yes which is the right settings configuration to get it?

(I have used here dots as spaces to show you a better result in the forum)

ORIGINAL CSS ALIGNMENT:
div.admin-panel h3 {
background-color: #999;
color: #fff;
padding: 5px 8px 5px;
margin: 0;
}

CSS ALIGNMENT I GET AS DEFAULT WITH AUTO ALIGNMENT PLUGIN:
div.admin-panel h3 {
background-color: #999;
color… : #fff;
padding… : 5px 8px 5px;
margin…: 0;
}

CSS ALIGNMENT I WANT
div.admin-panel h3 {
background-color:…#999;
color:…#fff;
padding:…5px 8px 5px;
margin:…0;
}

0 Likes

#2

What if you select the first :, then press cmd+d to select the rest of the colons, then you press right to move all the cursors right, then press the auto-align button. That should work.

0 Likes

#3

It function!! Thank you!
But I was looking for a faster shortcut.
Is there someone that can do it in a faster way, for example configuring Auto Align plugin in a proper way?

0 Likes