Is it possible to access the original event within the updateListener?

Hi all,

I have to work using the updateListener and would need to access the original event that generated the change of the document there within (if that makes sense).
Is that possible?
I couldn’t find anything in the documentation.
See this example:

EditorView.updateListener.of(function(v) {
	if(v.docChanged) {
            //Access event here
	}
})

Thanks for your answers,
Simon

No, you can’t—updates aren’t tied to events. You may get some relevant information from the userEvent annotation on transactions.