You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: