disable code lense for the output editor (#226971)

fixes https://github.com/microsoft/vscode/issues/226938
pull/226996/head
Johannes Rieken 2024-08-28 17:26:38 +02:00 committed by GitHub
parent bba915f0c5
commit dea4412243
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -185,6 +185,7 @@ class OutputEditor extends AbstractTextResourceEditor {
options.lineDecorationsWidth = 20;
options.rulers = [];
options.folding = false;
options.codeLens = false;
options.scrollBeyondLastLine = false;
options.renderLineHighlight = 'none';
options.minimap = { enabled: false };