vim-cpp
vim-cpp copied to clipboard
[syntax/cpp.vim] Different scientific notation coloring between 'E' and 'e'
#include <stdio.h>
int main()
{
// Different Colorings bewteen 'E' and 'e'
double d1 = 19.3E10;
double d2 = 19.3e10;
double d3 = 19E10;
double d4 = 19e10;
return 0;
}

'e' to '[eE] in 'syntax/cpp.vim'

