int is a keyword, so it is highlighted as such.hopefully libclang can help us to do this :D
For the others you're talking about semantic highlight which is hard.
ollydbg: The question is: does scintilla support such thing...
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
fstream hhh;
hhh.
return 0;
}
Can you guys confirm this?What happens if you save after you declared the type (fstream hhh;) and then CC the next line "hhh."?
Saving the file after declaring the type changes nothing. What does "CC the next line" mean?Do the code complete operation (STRG+SPACE).