in src/controller/commentCacheController.ts [116:123]
async exportCommentsFromContext() {
const editor = vscode.window.activeTextEditor;
if (!editor) {
return false;
}
const doc = editor.document;
return await this.exportVersionComments(doc.uri);
}