'//' in URL
Hi,
The '//' characters indicate that the rest of the line is commented out, however this behaviour is ignored if it is part of a url. The GitHub SCSS marking for example displays it correctly:
@import url(http://www.example.com/); // A comment
The above code in scss-mode would have everything after http: commented out. This has the additional side-effect of messing up indentation after this as it matches up with the opening parenthesis.
http://sass-lang.com/documentation/file.SASS_REFERENCE.html#import
Perhaps as a workaround you could just use @import "http://foo.com/bar"instead? That's documented in the above link.
I don't think there's any need for a workaround, it's only an aesthetic bug in the first place.