Closed jmohler1970 closed 7 years ago
Just found it:
lib/languageCFML.js on line 32 needs to read:
} else if (editor.getURI().endsWith("cfm") || editor.getURI().endsWith("cfml") || editor.getURI().endsWith("cfi")) {
Is this a standard practice? First I've ever heard of it.
I don't believe that is standard practice. You can edit your config.cson
(File
> Config...
) like so to accomplish your recommended change:
core:
customFileTypes:
'text.html.cfml': [
'cfi'
]
I would agree with @KamasamaK this would be a local configuration rather than a plugin update. Shall we mark this issue as closed?
Sounds like the right solution to me.
Good for me
I regularly have ColdFusion files with a
*.cfi
name.I do this for files that must only be used as an include and never directly ran.
Is there a way to have syntax highlighting for that extension?