jeaye / color_coded

A vim plugin for libclang-based highlighting of C, C++, ObjC
MIT License
870 stars 53 forks source link

Lose colors when a loop under directives #174

Open Outofpit opened 6 years ago

Outofpit commented 6 years ago

A loop like

for (int i =0; i < x; i ++)
  runfunc(a, b, c,d );

will be colored perfectly, but a loop like

#pragma unroll
for (int i =0; i < x; i ++)
  runfunc(a, b, c, d);

will have no color at all.