Re: strange syntax match in css.vim

2010-09-18 Fir de Conversatie Bram Moolenaar
Yasuhiro Matsumoto wrote: > Hello bram and all. > > If show in the following css file, it don't do syntax correctly. > > a:visited { # OK > color:#444; > } > a:visited{ # NG("{" does not have syntax color) > color:#444; > } > > It use "\S*" for matching pseudo class id include "{" also.

strange syntax match in css.vim

2010-09-07 Fir de Conversatie Yasuhiro MATSUMOTO
Hello bram and all. If show in the following css file, it don't do syntax correctly. a:visited { # OK color:#444; } a:visited{ # NG("{" does not have syntax color) color:#444; } It use "\S*" for matching pseudo class id include "{" also. Below is a patch. Please check and include. Thanks