CSS editor which expands one-line declarations on editing - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T16:32:38Z http://stackoverflow.com/feeds/question/161056 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/161056/css-editor-which-expands-one-line-declarations-on-editing 4 CSS editor which expands one-line declarations on editing andrisp 2008-10-02T06:07:30Z 2008-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#161079 0 Answer by Jonathan Lonowski for CSS editor which expands one-line declarations on editing Jonathan Lonowski 2008-10-02T06:19:18Z 2008-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#161149 1 Answer by da5id for CSS editor which expands one-line declarations on editing da5id 2008-10-02T06:53:45Z 2008-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#161198 0 Answer by andrisp for CSS editor which expands one-line declarations on editing andrisp 2008-10-02T07:23:03Z 2008-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#161795 3 Answer by Ian Oxley for CSS editor which expands one-line declarations on editing Ian Oxley 2008-10-02T11:23:53Z 2008-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#161904 0 Answer by jetpac for CSS editor which expands one-line declarations on editing jetpac 2008-10-02T11:59:30Z 2008-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#162432 0 Answer by PhiLho for CSS editor which expands one-line declarations on editing PhiLho 2008-10-02T14:02:01Z 2008-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#165941 0 Answer by Charles Roper for CSS editor which expands one-line declarations on editing Charles Roper 2008-10-03T06:50:10Z 2008-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>