From d579d395df96047e55aaa907aa1d05876064a0b3 Mon Sep 17 00:00:00 2001 From: Vinicius Stock Date: Fri, 14 Jul 2023 11:48:38 -0400 Subject: [PATCH] Enable code lens by default --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 444f8c64..d03e9f3c 100644 --- a/package.json +++ b/package.json @@ -134,7 +134,7 @@ "codeLens": { "description": "Enable code lens, which generates clickable text to enrich editor experience (run tests, open Gem pages, ...)", "type": "boolean", - "default": false + "default": true }, "definition": { "description": "Enable go to definition, which navigates to the definition of the symbol under the cursor", @@ -156,7 +156,7 @@ "selectionRanges": true, "semanticHighlighting": true, "completion": true, - "codeLens": false, + "codeLens": true, "definition": true } },