Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #2609 from bryanstedman/master
Browse files Browse the repository at this point in the history
Adds sass support.
  • Loading branch information
njx committed Feb 15, 2013
2 parents d860aff + a96b4b6 commit 8863c35
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/editor/EditorUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ define(function (require, exports, module) {
require("thirdparty/CodeMirror2/mode/perl/perl");
require("thirdparty/CodeMirror2/mode/python/python");
require("thirdparty/CodeMirror2/mode/ruby/ruby");
require("thirdparty/CodeMirror2/mode/sass/sass");
require("thirdparty/CodeMirror2/mode/lua/lua");
require("thirdparty/CodeMirror2/mode/mysql/mysql");
require("thirdparty/CodeMirror2/mode/diff/diff");
Expand Down Expand Up @@ -149,6 +150,10 @@ define(function (require, exports, module) {
case "py":
case "pyw":
return "python";

case "sass":
case "scss":
return "sass";

case "lua":
return "lua";
Expand Down

0 comments on commit 8863c35

Please sign in to comment.