From 420f521f1e852f29b0371a914c648e3b0ff50df1 Mon Sep 17 00:00:00 2001 From: Raymond Zhao <7199958+rzhao271@users.noreply.github.com> Date: Thu, 10 Oct 2024 09:43:48 -0700 Subject: [PATCH 1/2] fix: tag experimental settings with new system --- package.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 6c9746d33e0..23a00573074 100644 --- a/package.json +++ b/package.json @@ -1708,7 +1708,7 @@ "default": false, "description": "%jupyter.configuration.jupyter.interactiveWindowNotebookRepl.description%", "tags": [ - "experimental" + "experimental", "onExP" ] }, "jupyter.interactiveWindow.textEditor.cellFolding": { @@ -1802,7 +1802,10 @@ "type": "boolean", "default": false, "description": "Experimental feature to enable execution analysis in notebooks", - "scope": "application" + "scope": "application", + "tags": [ + "experimental" + ] }, "jupyter.enableKernelCompletions": { "type": "boolean", @@ -1810,7 +1813,7 @@ "markdownDescription": "%jupyter.configuration.jupyter.enableKernelCompletions.markdownDescription%", "scope": "application", "tags": [ - "experimental" + "onExP" ] }, "jupyter.formatStackTraces": { From 72d1dee7f02ccae77b88439fbad308ac47dfe6ac Mon Sep 17 00:00:00 2001 From: Raymond Zhao <7199958+rzhao271@users.noreply.github.com> Date: Thu, 10 Oct 2024 10:07:23 -0700 Subject: [PATCH 2/2] Consider enableKernelCompletions as stable --- package.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 23a00573074..2bc5692b3eb 100644 --- a/package.json +++ b/package.json @@ -1708,7 +1708,8 @@ "default": false, "description": "%jupyter.configuration.jupyter.interactiveWindowNotebookRepl.description%", "tags": [ - "experimental", "onExP" + "experimental", + "onExP" ] }, "jupyter.interactiveWindow.textEditor.cellFolding": { @@ -1811,10 +1812,7 @@ "type": "boolean", "default": true, "markdownDescription": "%jupyter.configuration.jupyter.enableKernelCompletions.markdownDescription%", - "scope": "application", - "tags": [ - "onExP" - ] + "scope": "application" }, "jupyter.formatStackTraces": { "type": "boolean",