vim-cpp icon indicating copy to clipboard operation
vim-cpp copied to clipboard

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

Open xvim64 opened this issue 3 years ago • 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

xvim64 avatar May 23 '22 10:05 xvim64