Hello,
Im trying to do a plugin which will provide few extra items in completion window, so:
- i’ve created directory “sublime-text-3/Packages/html/”.
- Created file sublime-text-3/Packages/html/html.sublime-completions
- added to this file:
{
"scope": "text.html - source - meta.tag, punctuation.definition.tag.begin",
"completions":
{ "trigger": "greetings", "contents": "Hello world!" },
]
}
and its not working
What I’m dooing wrong?