views:

31

answers:

0

I have a CSS file with some pretty basic stuff including a data:image like so:

#next {
     background-image: url("data:image/png,%89PNG%0D%0");

The actual data string is much longer, but I've truncated for this post. The vim CSS syntax highlighter chokes on that long string and forces the rest of my css declarations in that file to not be highlighted. vim is also slow in this file when that declaration is visible (e.g. when it's trying to highlight for the data url). Anyone have any recommendations for fixing/circumventing this?