So Eclipse can auto-format my css files under Source->Format, or by hitting Cntl-Shift-F.
When I group selectors for a single rule, eclipse formats it like this:
.planner th,.planner td {
border: 1px solid black;
}
I would really like Eclipse to add a space between the selectors to aide readability, like this:
.planner th, .planner td {
border: 1px solid black;
}
Is there any way I can configure Eclipse to do this? I'm running Eclipse Indigo.