Shanedell commented on code in PR #117:
URL: https://github.com/apache/daffodil-vscode/pull/117#discussion_r889172444


##########
package.json:
##########
@@ -392,6 +475,99 @@
             "default": ""
           }
         }
+      },
+      {
+        "type": "object",
+        "title": "vscode-dfdl",
+        "properties": {
+          "vscode-dfdl.enabled": {
+            "type": "boolean",
+            "default": true,
+            "description": "Enable syntax highlighting and status bar",
+            "scope": "resource"
+          },
+          "vscode-dfdl.showPath": {
+            "type": "boolean",
+            "default": true,
+            "description": "Show tag path in status bar",
+            "scope": "resource"
+          },
+          "vscode-dfdl.showRuler": {
+            "type": "boolean",
+            "default": true,
+            "description": "Show highlighted tag pair in ruler section",
+            "scope": "resource"
+          },
+          "vscode-dfdl.highlightSelfClosing": {
+            "type": "boolean",
+            "default": false,
+            "description": "Highlight self-closing tags",
+            "scope": "resource"
+          },
+          "vscode-dfdl.highlightFromContent": {
+            "type": "boolean",
+            "default": true,
+            "description": "Highlight matching tag from inside tag content",
+            "scope": "resource"
+          },
+          "vscode-dfdl.highlightFromName": {
+            "type": "boolean",
+            "default": true,
+            "description": "Highlight matching tag from the tag name",
+            "scope": "resource"
+          },
+          "vscode-dfdl.highlightFromAttributes": {
+            "type": "boolean",
+            "default": true,
+            "description": "Highlight matching tag from the tag attributes",
+            "scope": "resource"
+          },
+          "vscode-dfdl.noDefaultEmptyElements": {
+            "type": "boolean",
+            "default": false,
+            "description": "Don't use default HTML empty elements",
+            "scope": "resource"
+          },
+          "vscode-dfdl.customEmptyElements": {
+            "type": "array",
+            "default": null,
+            "description": "Custom empty elements in addition to the default 
HTML empty elements",
+            "scope": "resource"
+          },
+          "vscode-dfdl.styles": {
+            "opening": {
+              "left": {
+                "underline": "yellow"
+              },
+              "right": {
+                "surround": "#155FFA"
+              },
+              "name": {
+                "highlight": "rgba(180, 20, 80, 0.3)"
+              }
+            },
+            "closing": {
+              "full": {
+                "custom": {
+                  "dark": {
+                    "borderWidth": "0 0 1px 0",
+                    "borderColor": "white",
+                    "borderStyle": "solid",
+                    "borderRadius": "4px",
+                    "right": "10px"
+                  },
+                  "light": {
+                    "borderWidth": "0 0 1px 0",
+                    "borderColor": "brown",
+                    "borderStyle": "solid",
+                    "borderRadius": "4px",
+                    "right": "10px"
+                  }
+                }
+              }
+            }
+          }
+        }

Review Comment:
   The above comment is correct that be removed, but the hightlighting style I 
believe should stay as it these will use our custom set colors instead of the 
defaults



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to