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

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


The following commit(s) were added to refs/heads/1703_open_infoset by this push:
     new dc48b066 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.
dc48b066 is described below

commit dc48b066c440f22afbc888804912892f167a73b9
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 32b6adcf..b9eac33d 100644
--- a/doc/Introduction-to-Daffodil-VS-Code-Extension.md
+++ b/doc/Introduction-to-Daffodil-VS-Code-Extension.md
@@ -192,6 +192,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