tags:

views:

263

answers:

1

In particular, the display of initialization lists is really bad:

vector<int> v({1,2,3});

will highlight the curly braces in red (denoting an error.)

+4  A: 

As far as I know, there is a work in progress for that, see here at the vim_dev mail list.

Tarantula