1
I apparently can't get autocompletion to work in my XML files.
Here is my xml.sublime-completions
file, which I added to the User folder:
{
"scope": "text.xml",
"completions":
[
{
"trigger": "t",
"contents": "<Text id="$1"><![CDATA[$0]]></Text>"
}
]
}
Now typing t-<tab> in XML file only results in <t></t>:
<?xml version="1.0" encoding="UTF-8"?>
<t></t>
How to I even start debugging this?