In the hope of creating a separate library of snippets/abbreviations, I went to Preferences > Package Settings > Emmet > Settings - User (C:\Users…\AppData\Roaming\Sublime Text 2\Packages\User\Emmet.sublime-settings) and added this:
{
“extensions_path”: “~/emmet/ksdol”
}
and Ctrl + S to save it.
Then I manually created a ksdol (C:\Users…\AppData\Roaming\Sublime Text 2\Packages\Emmet\emmet\ksdol) subdirectory and copied snipets.json in it. That copy was reduced to
{
“variables”: {
},
"css": {
"filters": "css",
"profile": "css",
"snippets": {
}
},
"html": {
"filters": "html",
"profile": "html",
"snippets": {
},
"abbreviations": {
"html:xsjs": "!!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=${lang}]"
}
}
}
and Ctrl + S to save it.
Ctrl + Shift + P to select Emmet: Reload Extensions, closed and opened Sublime, and Ctrl + E on html:xsjs and ended up with html:xsjs</html:xsjs>. docs.emmet.io/customization/snippets/'s first sentence might be what I am looking for except I have no idea where/what the ‘extensions folder’ is. I am missing something or is the whole approach is wrong?