From 2f0a49cebbdd7f0c3da2149c625ac2c50a358928 Mon Sep 17 00:00:00 2001 From: Heyward Fann Date: Fri, 12 Apr 2024 17:13:08 +0800 Subject: [PATCH] feat(schema): change scope of codeLens configs (#4980) change to `language-overridable` Closes #4978 --- data/schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/schema.json b/data/schema.json index 5bd15b07104..cc14c198a02 100644 --- a/data/schema.json +++ b/data/schema.json @@ -816,20 +816,20 @@ }, "codeLens.position": { "type": "string", - "scope": "resource", + "scope": "language-overridable", "enum": ["top", "eol", "right_align"], "description": "Position of codeLens, requires nvim >= 0.6.0", "default": "top" }, "codeLens.separator": { "type": "string", - "scope": "resource", + "scope": "language-overridable", "description": "Separator text for codeLens in virtual text", "default": "" }, "codeLens.subseparator": { "type": "string", - "scope": "resource", + "scope": "language-overridable", "description": "Subseparator between codeLenses in virtual text", "default": " | " },