From f17d0bcc82b382870b7f748805e9e3b81489a330 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Tue, 16 Jan 2018 10:20:08 -0800 Subject: [PATCH] set `problems.decorations.enabled` to `true`, #782 --- .../workbench/parts/markers/browser/markersFileDecorations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/markers/browser/markersFileDecorations.ts b/src/vs/workbench/parts/markers/browser/markersFileDecorations.ts index 7f09b13a275..447a5f43abf 100644 --- a/src/vs/workbench/parts/markers/browser/markersFileDecorations.ts +++ b/src/vs/workbench/parts/markers/browser/markersFileDecorations.ts @@ -102,7 +102,7 @@ Registry.as(ConfigurationExtensions.Configuration).regis 'problems.decorations.enabled': { 'description': localize('markers.showOnFile', "Show Errors & Warnings on files and folder."), 'type': 'boolean', - 'default': false + 'default': true } } }); -- GitLab