We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc6ee0e commit eb7ed2bCopy full SHA for eb7ed2b
src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts
@@ -728,8 +728,10 @@ class NotebookAccessibleViewContribution extends Disposable {
728
} else {
729
text = decoder.decode(pickedBuffer);
730
}
731
-
732
- outputContent = outputContent.concat(`${text}\n`);
+ const index = viewCell.outputsViewModels.length > 1
+ ? `Cell output ${i + 1} of ${viewCell.outputsViewModels.length}\n`
733
+ : '';
734
+ outputContent = outputContent.concat(`${index}${text}\n`);
735
736
737
if (!outputContent) {
0 commit comments