This is an automated email from the ASF dual-hosted git repository.

hdalsania pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git


The following commit(s) were added to refs/heads/main by this push:
     new 17e36467 changed restrictions on when the "open infoset" options 
appear in the Daffodil Explorer. Also borrowed page from the wiki for inclusion 
in the New User's Guide that explains the Daffodil Exporer.
17e36467 is described below

commit 17e364677460211b8dccea7747acfc01fdcc85b1
Author: Larry Barber <[email protected]>
AuthorDate: Thu Jul 23 11:03:30 2026 -0400

    changed restrictions on when the "open infoset" options appear in the
    Daffodil Explorer.
    Also borrowed page from the wiki for inclusion in the New User's Guide
    that explains the Daffodil Exporer.
---
 doc/Introduction-to-Daffodil-VS-Code-Extension.md |  5 +++++
 package.json                                      | 12 ++++++------
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/doc/Introduction-to-Daffodil-VS-Code-Extension.md 
b/doc/Introduction-to-Daffodil-VS-Code-Extension.md
index 2f4446b8..47d833df 100644
--- a/doc/Introduction-to-Daffodil-VS-Code-Extension.md
+++ b/doc/Introduction-to-Daffodil-VS-Code-Extension.md
@@ -190,6 +190,11 @@ Leave the 
`${command:AskForSchemaName}`/`${command:AskForDataName}` values and y
 |***Debugging for the first time for Visual Studio Code***||
 |You will see the data editor pop 
up!|![commandpalletedaff](https://github.com/user-attachments/assets/56ac7f2d-6889-4a93-8bbe-052b20129e91)|
 
+|<div style="width:200px"></div>|<div style="width:205px"></div>|
+|:---|:---|
+|***DFDL Command Panel***||
+|All debugging-related commands are conveniently grouped in one place, making 
them easier to find and use. This command panel dynamically updates to only 
show relevant commands based on the current debug mode and can be quickly 
executed using a play 
button.|![{D03B1D68-20CC-4F42-901F-0728C8137038}](https://github.com/user-attachments/assets/52165b90-3dd5-495b-8b86-bd15b4f960a1)|
+
 
 |<div style="width:200px"></div>|<div style="width:205px"></div>|
 |:---|:---|
diff --git a/package.json b/package.json
index bf8fdc67..d11a6ebf 100644
--- a/package.json
+++ b/package.json
@@ -223,12 +223,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"
         },
         {
@@ -404,16 +404,16 @@
       },
       {
         "command": "infoset.display",
-        "title": "Display the infoset view",
+        "title": "Open infoset view",
         "category": "Daffodil Debug",
-        "enablement": "inDebugMode && editorLangId == 'dfdl'",
+        "enablement": "inDebugMode",
         "icon": "$(file-code)"
       },
       {
         "command": "infoset.diff",
-        "title": "View infoset diff",
+        "title": "Open infoset diff view",
         "category": "Daffodil Debug",
-        "enablement": "inDebugMode && editorLangId == 'dfdl'",
+        "enablement": "inDebugMode",
         "icon": "$(diff)"
       },
       {

Reply via email to