Fix C highlighting, update ObjC, fix themes, add UUID

This commit is contained in:
Garen Torikian 2012-09-09 02:56:49 -07:00 committed by nightwing
commit 779c00eace
49 changed files with 367 additions and 341 deletions

View file

@ -27,6 +27,9 @@ var supportedScopes = {
"support.function.firebug": "support.firebug",
"support.function.constant": "support.function.constant",
"support.constant": "support.constant",
"support.class": "support.class",
"support.type": "support.type",
"support.other": "support.other",
"function": "function",
"function.buildin": "function.buildin",
@ -206,6 +209,7 @@ function convertTheme(name) {
var styles = extractStyles(theme);
styles.cssClass = "ace-" + hyphenate(name);
styles.uuid = theme.uuid;
var css = fillTemplate(cssTemplate, styles);
css = css.replace(/[^\{\}]+{\s*}/g, "");