I'm using Monaco editor and I know that I can get the original value and modified value of a diff editor with the getValue
methods of the respective editor:
var originalText = diffEditor.getModifiedEditor().getValue();
var modifiedText = diffEditor.getOriginalEditor().getValue();
However, I want to know how to retrieve the contents of an inline diff editor or of the editor after merge.