
Hi,
I use the XML addon and load a large >100mb xml file with LoadFile. It takes a while but that's okay. When its loaded and I want to edit a value of a xmlnode it takes forever to display.
For example
<message text="Hello"/>
I select 'H' from hello and enter a new character. It takes up to 2 minutes for the editor to update. I thought it might be completion provider so I tried unregistering the following services but that didn't helped:
editor.Document.Language.UnregisterService<IEditorDocumentTextChangeEventSink>();
editor.Document.Language.UnregisterService<XmlCompletionProvider>(); ;
editor.Document.Language.UnregisterService<XmlQuickInfoProvider>(); ;
editor.Document.Language.UnregisterService<SquiggleTagQuickInfoProvider>();
Any idea?