Added all the remaining extensions to filetypes

mapping which ace-editor supports.
This commit is contained in:
Florian Jacob 2011-10-05 00:23:16 +02:00
parent 93ed844015
commit 813e8b274a
1 changed files with 23 additions and 7 deletions

View File

@ -12,14 +12,30 @@ function setSyntaxMode(ext){
// Loads the syntax mode files and tells the editor
var filetype = new Array();
// Todo finish these
filetype["php"] = "php";
filetype["html"] = "html";
filetype["rb"] = "ruby";
filetype["h"] = "c_cpp";
filetype["c"] = "c_cpp";
filetype["cpp"] = "c_cpp";
filetype["clj"] = "clojure";
filetype["coffee"] = "coffee"; // coffescript can be compiled to javascript
filetype["cs"] = "csharp";
filetype["css"] = "css";
filetype["pl"] = "perl";
filetype["py"] = "python";
filetype["xml"] = "xml";
filetype["groovy"] = "groovy";
filetype["html"] = "html";
filetype["java"] = "java";
filetype["js"] = "javascript";
filetype["json"] = "json";
filetype["ml"] = "ocaml";
filetype["mli"] = "ocaml";
filetype["pl"] = "perl";
filetype["php"] = "php";
filetype["py"] = "python";
filetype["rb"] = "ruby";
filetype["scad"] = "scad"; // seems to be something like 3d model files printed with e.g. reprap
filetype["scala"] = "scala";
filetype["scss"] = "scss"; // "sassy css"
filetype["svg"] = "svg";
filetype["textile"] = "textile"; // related to markdown
filetype["xml"] = "xml";
if(filetype[ext]!=null){
// Then it must be in the array, so load the custom syntax mode
@ -166,4 +182,4 @@ $(window).resize(function() {
$(document).ready(function() {
bindControlEvents();
});
});