My .SSI file in Adobe Edge Code CC is treated as plaintext as you can see from this image:
I would like it to syntax highlight as per a .html file. I have tried the extensions registry at: https://brackets-registry.aboutweb.com/ and cannot find anything appropriate. Perhaps I am looking in the wrong place?
Update: this is now much easier to do:
Original answer:
You don't have to clone Brackets from git as suggested in the other SO answer - it was only needed because the file extension in that case was already assigned to a different language (which isn't that common).
For unassigned file extensions like .ssi, you can create a very simple Brackets extension - just a main.js file containing this code:
define(function (require, exports, module) {
var LanguageManager = brackets.getModule("language/LanguageManager");
var language = LanguageManager.getLanguage("html");
language.addFileExtension("ssi");
});
This is easier to set up than pulling from git, and a little more foolproof. (In the future, this should be more even easily configurable though).
For more info, see this answer: how to add file extension in adobe-brackets editor ?