From 3b2cc0462412f933c378f9f331932f0db6280e27 Mon Sep 17 00:00:00 2001 From: 999axel999 <999axel999@users.noreply.github.com> Date: Fri, 22 May 2026 22:53:54 +0700 Subject: [PATCH 1/2] Show infoset actions whenever debugging is active --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0b0af774c..b50c4c677 100644 --- a/package.json +++ b/package.json @@ -221,12 +221,12 @@ }, { "command": "infoset.display", - "when": "inDebugMode && editorLangId == 'dfdl'", + "when": "inDebugMode", "group": "navigation@2" }, { "command": "infoset.diff", - "when": "inDebugMode && editorLangId == 'dfdl'", + "when": "inDebugMode", "group": "navigation@3" }, { From f78bbc34c00375a8a1b49cd9ce496707d1da787e Mon Sep 17 00:00:00 2001 From: 999axel999 <62794205+999axel999@users.noreply.github.com> Date: Fri, 5 Jun 2026 12:04:35 +0700 Subject: [PATCH 2/2] fix: enable infoset commands during debug sessions --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b50c4c677..9f42d5586 100644 --- a/package.json +++ b/package.json @@ -390,14 +390,14 @@ "command": "infoset.display", "title": "Display the infoset view", "category": "Daffodil Debug", - "enablement": "inDebugMode && editorLangId == 'dfdl'", + "enablement": "inDebugMode", "icon": "$(file-code)" }, { "command": "infoset.diff", "title": "View infoset diff", "category": "Daffodil Debug", - "enablement": "inDebugMode && editorLangId == 'dfdl'", + "enablement": "inDebugMode", "icon": "$(diff)" }, {