Part of config that set up company\irony\company-irony.
The problem is: when i type a new function for example:
int
bar(int a, int b) {
return(0);
}
in my main-function company doesn't propose my newly created function for auto-completion. Only when i kill buffer and after reopen this buffer, it will be available. When new variables come up in the scope it's add it to base on the fly.
int
main(void) {
int a;
a = 4; // on this point company will show me auto-completion for a
return(0);
}
What can i do, to make irony update base on the fly?
Part of config that set up company\irony\company-irony.
The problem is: when i type a new function for example:
in my main-function company doesn't propose my newly created function for auto-completion. Only when i kill buffer and after reopen this buffer, it will be available. When new variables come up in the scope it's add it to base on the fly.
What can i do, to make irony update base on the fly?