Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vim bracket and semicolon highliting

Sometimes vim highlights brackets or semicolon with red color. What plugin highlights it? Does it mean error in this place? Look on a picture please.

enter image description here

like image 290
user1798349 Avatar asked Nov 13 '22 17:11

user1798349


1 Answers

Yes, for the default syntax highlighter, it means that vim has flagged something wrong with that location. Check out :help syntax for more options. As @romainl stated, other plugins may be affecting what you see.

I have a vanilla Cygwin version running and it flags a few brackets in your css snippet as being invalid either due to missing opening/closing brackets or bad syntax as vim defines it.

like image 94
AlG Avatar answered Jan 04 '23 01:01

AlG