Added the treeViewEnabled workspace option.

This commit is contained in:
Mark Lopez 2017-07-12 10:36:54 -05:00
parent 4463394b2c
commit a1fdff5501

View file

@ -91,6 +91,11 @@
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"description": "Ignores default xmlns attribute when evaluating XPath." "description": "Ignores default xmlns attribute when evaluating XPath."
},
"xmlTools.treeViewEnabled": {
"type": "boolean",
"default": true,
"description": "Enable the XML Tree (XML Document) custom view."
} }
} }
}, },
@ -132,7 +137,8 @@
"explorer": [ "explorer": [
{ {
"id": "xmlTreeView", "id": "xmlTreeView",
"name": "XML Document" "name": "XML Document",
"when": "config.xmlTools.treeViewEnabled != false"
} }
] ]
} }