I am attempting to customize the outline view for XML files however, it does not appear to be working as expected. What I see after making my modifications...

I customized the settings.json and I reopen the file every time I update the settings.json
`{
"editor.fontSize": 14,
"editor.linkedEditing": true,
"workbench.colorTheme": "Default Dark+",
"remote.SSH.showLoginTerminal": true,
"remote.SSH.remotePlatform": {
"devnixster01.imanheim.com": "linux"
},
"workbench.sideBar.location": "right",
"files.associations": {
"*.bpml": "xml"
},
"security.workspace.trust.untrustedFiles": "open",
"redhat.telemetry.enabled": false,
"xml.codeLens.enabled": true,
"xml.symbols.enabled": true,
"xml.symbols.maxItemsComputed": 30000,
"xml.symbols.filters": [
{
"pattern": "*.{bpml,xml}",
"expressions" :[
{
// Process Name
"xpath": "//@name",
"inlineAttribute" : true,
"showAttributeName": false
}
]
}
]
}`
Sample XML I am trying to use:
`
<operation name="Get BP MetaData">
<participant name="BPMetaDataInfoService" />
<output message="Xout">
<assign to="DISPOSITION">false</assign>
<assign to="LINKAGE">false</assign>
<assign to="." from="*" />
</output>
<input message="Xin">
<assign to="WORKSPACE/REPORT/SAVETILL" from="substring-before(BPDATA/WFD_LIFE_SPAN,' Minute(s)')" append="true"/>
<assign to="WORKSPACE/REPORT/REPORTID" from="string(BPDATA/WFD_ID)" />
</input>
</operation> </sequence>
`
I am attempting to customize the outline view for XML files however, it does not appear to be working as expected. What I see after making my modifications...

I customized the settings.json and I reopen the file every time I update the settings.json
`{
"editor.fontSize": 14,
"editor.linkedEditing": true,
"workbench.colorTheme": "Default Dark+",
]
}`
Sample XML I am trying to use:
`
`