CSS editor which expands one-line declarations on editing - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T16:32:38Zhttp://stackoverflow.com/feeds/question/161056http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/161056/css-editor-which-expands-one-line-declarations-on-editing4CSS editor which expands one-line declarations on editingandrisp2008-10-02T06:07:30Z2008-10-03T06:50:10Z
<p>Is there a CSS editor which automatically expands one-line declarations as multi-line declarations on focus ? To clarify my thought, see example below:</p>
<p>Original CSS:</p>
<pre><code>div#main { color: orange; margin: 1em 0; border: 1px solid black; }
</code></pre>
<p>But when focusing on it, editor automatically expands it to:</p>
<pre><code>div#main {
color: orange;
margin: 1em 0;
border: 1px solid black;
}
</code></pre>
<p>And when it looses focus, editor again it automatically compresses it to one-line declaration.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/161056/css-editor-which-expands-one-line-declarations-on-editing/161079#1610790Answer by Jonathan Lonowski for CSS editor which expands one-line declarations on editingJonathan Lonowski2008-10-02T06:19:18Z2008-10-02T06:31:20Z<p>Sorry. I don't know of any IDEs that explicitly do that.</p>
<p>But, there are quite a few external options:</p>
<ul>
<li><a href="http://csstidy.sourceforge.net/" rel="nofollow">CSSTidy</a> (download)</li>
<li><a href="http://www.cleancss.com/" rel="nofollow">Clean CSS</a> (in-browser)</li>
<li><a href="http://floele.flyspray.org/csstidy//css_optimiser.php" rel="nofollow">CSS Optimiser</a> (in-browser)</li>
<li><a href="http://www.google.com/search?q=css+(tidy+OR+beautify)" rel="nofollow">others...</a> (Google Search)</li>
</ul>
http://stackoverflow.com/questions/161056/css-editor-which-expands-one-line-declarations-on-editing/161149#1611491Answer by da5id for CSS editor which expands one-line declarations on editingda5id2008-10-02T06:53:45Z2008-10-02T07:12:48Z<p>I've not heard of one. If you're on a Mac I can definitely recommend <a href="http://macrabbit.com/cssedit/" rel="nofollow">CSSEdit</a>. It does auto-formatting very nicely, amoungst other things.</p>
<p>EDIT: I originally said "though as the comment says it's a great idea" but, thinking about it, is that what you really want? I can see that it would be good to have expansion/contraction onClick (in which case <a href="http://macromates.com/" rel="nofollow">TextMate</a> - again Mac - though CSS suport isn't as good as CSSEdit), but onFocus?</p>
http://stackoverflow.com/questions/161056/css-editor-which-expands-one-line-declarations-on-editing/161198#1611980Answer by andrisp for CSS editor which expands one-line declarations on editingandrisp2008-10-02T07:23:03Z2008-10-02T07:23:03Z<p>da5id, I actually don't care about implementation details (onclick or onhover, though onclick seems better when you say it ;), I'm just curious if there are any editors which supports this kind of feature in any way.</p>
<p>PS. I'm not on Mac but Windows.</p>
http://stackoverflow.com/questions/161056/css-editor-which-expands-one-line-declarations-on-editing/161795#1617953Answer by Ian Oxley for CSS editor which expands one-line declarations on editingIan Oxley2008-10-02T11:23:53Z2008-10-02T11:23:53Z<p>If you are using Visual Studio you should be able to do a close approximation of this:</p>
<ol>
<li>You can change how CSS is formatted
via the Tools -> Options menu.</li>
<li>Check 'Show all settings' if it is unchecked.</li>
<li>Go to Text Editor -> CSS -> Format and pick the semi-expanded option</li>
<li>Ok you changes.</li>
<li>Then ctrl+A, ctrl+K, ctrl + D should re-format your document</li>
<li>When you are finished editing just go back to the options and pick the compact CSS format then ctrl+A, ctrl+K, ctrl + D to re-format again.</li>
</ol>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/161056/css-editor-which-expands-one-line-declarations-on-editing/161904#1619040Answer by jetpac for CSS editor which expands one-line declarations on editingjetpac2008-10-02T11:59:30Z2008-10-02T11:59:30Z<p>Its not exactly what you want but try the windows port of textmate <a href="http://www.e-texteditor.com/" rel="nofollow">E Text Editor</a>, for on click folding of css rules, auto formating and most other textmate functionality.</p>
http://stackoverflow.com/questions/161056/css-editor-which-expands-one-line-declarations-on-editing/162432#1624320Answer by PhiLho for CSS editor which expands one-line declarations on editingPhiLho2008-10-02T14:02:01Z2008-10-02T14:26:53Z<p>You can do that with the scripting language of your favorite editor.</p>
<p>For example in SciTE:</p>
<pre><code>function ExpandContractCSS()
local ext = string.lower(props["FileExt"])
if ext ~= "css" then return end
local line = GetCurrentLine()
local newForm
if string.find(line, "}") then
-- On one line
newForm = string.gsub(line, "; *", ";\r\n ")
newForm = string.gsub(newForm, "{ *", "{\r\n ")
newForm = string.gsub(newForm, " *}", "}")
else
-- To contract
-- Well, just use Ctrl+Z!
-- Maybe not, code to come if interest
end
if newForm ~= nil then
ReplaceCurrentLine(newForm)
end
end
</code></pre>
<p>GetCurrentLine and ReplaceCurrentLine are just convenience functions from my collection, I can give them (and do the contraction part) if you are interested.</p>
http://stackoverflow.com/questions/161056/css-editor-which-expands-one-line-declarations-on-editing/165941#1659410Answer by Charles Roper for CSS editor which expands one-line declarations on editingCharles Roper2008-10-03T06:50:10Z2008-10-03T06:50:10Z<p>It's a good question. I'd love to see this in a CSS editor. <a href="http://www.newsgator.com/Individuals/TopStyle/Default.aspx" rel="nofollow">TopStyle</a> does this, but it isn't automatic; you have you use a hotkey.</p>