first cut of "bytes only" output items

This commit is contained in:
Johannes Rieken
2021-05-20 16:02:18 +02:00
parent 17459a4abd
commit e6dd819bf0
6 changed files with 151 additions and 88 deletions

View File

@@ -301,9 +301,9 @@ export class ExtHostNotebookController implements ExtHostNotebookShape {
}
if (editorId) {
throw new Error(`Could NOT open editor for "${notebookOrUri.toString()}" because another editor opened in the meantime.`);
throw new Error(`Could NOT open editor for "${notebookOrUri.uri.toString()}" because another editor opened in the meantime.`);
} else {
throw new Error(`Could NOT open editor for "${notebookOrUri.toString()}".`);
throw new Error(`Could NOT open editor for "${notebookOrUri.uri.toString()}".`);
}
}