I'm using a Compass sprite @import statement in my Sass stylesheet which includes all of the PNG files in a directory (@import 'place-detail-icons/*.png';). Problem is that Macvim sees everything after the /* as a CSS comment, and so it displays the rest of the stylesheet as a comment.
I was able to fix this by putting /**/ on the line below the @import statement in order to fake out Macvim. But was wondering if anyone's found a non-hack way to address this. Here's a larger selection of the code.
@import 'mixins/tabs';
@import 'mixins/timestamps';
@import 'mixins/triangles';
@import 'place-detail-icons/*.png';
#modal .file-upload {
margin-bottom: 20px;
}
#details {
position: relative;
left: -160px;
width: 1280px;
min-height: 410px;
padding: 30px 0 50px;
border-top: 1px solid $white;
}