int Set_foo (int val){
foo = val;
}
int main(){
Set_foo (10); //highlight here
return 0;
}
Yes, thank you. Can the IDE recognize when i write/call a function and add a color to it, like when i type for example "while" turning the keyword in blue, same when i write a function to turn the function name in some color.That's what is called semantic highlighting, and no, it's not supported directly, we use scintilla as editor component and it uses lexer based syntax highlighting.
Again, please forgive my english