vim-jp/vim-cpp

[syntax/cpp.vim] Different scientific notation coloring between 'E' and 'e'

xvim64 opened this issue · 0 comments

#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;
}

1

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

2
3

4