Drea devs,
In my new job I'm also working with css files and html-templating with inline php. I just instinctly selected a bit of css and pressed ctrl-e to comment that, but the whole line got commented instead.
A simple line of css: .front #content .element-count-2 #block-block-1 { width: 250px; height: 135px;}
Select the width statement: .front #content .element-count-2 #block-block-1 { [width: 250px;] height: 135px;}
Press ctrl-e
Expected result: .front #content .element-count-2 #block-block-1 { /* [width: 250px;] */ height: 135px;}
Actual result: /* .front #content .element-count-2 #block-block-1 { [width: 250px;] height: 135px;} */
Looks to me like a nice Geany addition! ;)
-H-