From ee3b0ed4b5f95b3cac22ce6a208b626721f46b3b Mon Sep 17 00:00:00 2001 From: Pete Freitag Date: Mon, 25 Jun 2012 15:10:25 -0300 Subject: [PATCH] Updated getModeFromFileExtensions to let cfm and cfc files use the html editor. This will make any ColdFusion developers experience with brackets much much better. --- src/editor/EditorUtils.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/editor/EditorUtils.js b/src/editor/EditorUtils.js index 73aa38b548f..aa85ed2addb 100644 --- a/src/editor/EditorUtils.js +++ b/src/editor/EditorUtils.js @@ -80,6 +80,8 @@ define(function (require, exports, module) { case "html": case "htm": case "xhtml": + case "cfm": + case "cfc": return "htmlmixed"; case "xml":