
In my application, i am using a global project assembly and language. I create a new editordocument and set its language to my global language.
It looks like that :
var document = new EditorDocument();
document.Language = syntaxLanguage;
document.SetHeaderAndFooterText(header, footer);
this.Document = document;
Document is then bound to my view.
The issue is, whenever i delete a variable, it's still appear in the code completion.
Is there a way to refresh the code completion? Or a way to remove the document from the project assembly?
Thank you for your help :)