Christian Lenz created NETBEANS-1314: ----------------------------------------
Summary: Surround selected text with quotes Key: NETBEANS-1314 URL: https://issues.apache.org/jira/browse/NETBEANS-1314 Project: NetBeans Issue Type: Improvement Components: web - CSS Preprocessors (SASS, LESS, ...) Affects Versions: Next Reporter: Christian Lenz I have this piece of code in my .scss file: {code} background: url(/Public/smth/{version}/tablomat/css/img/preloader/background.png); {code} because of the {version} I have to use "" for this content. When I select from / until .png and want to surround it with " I got this output: {code} background: url(""/Public/Tablomat/build/{version}/tablomat/css/img/preloader/background.png); // wrong behavior background: url("/Public/Tablomat/build/{version}/tablomat/css/img/preloader/background.png"); // expected {code} The path will not surrounded. Happens here too: background-color: ""green; // wrong behavior background-color: "green"; // expected -- This message was sent by Atlassian JIRA (v7.6.3#76005) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists