aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/editor/index.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/editor/index.php b/apps/editor/index.php
index b4a15c5d208..e8fd36828b6 100644
--- a/apps/editor/index.php
+++ b/apps/editor/index.php
@@ -48,7 +48,13 @@ if(substr_count($file,'.')!=0){
// TODO ADD THESE
$types = array('php' => 'php',
'js' => 'javascript',
- 'html' => 'html');
+ 'html' => 'html',
+ 'css' => 'css',
+ 'pl' => 'perl',
+ 'py' => 'python',
+ 'rb' => 'ruby',
+ 'xml' => 'xml',
+ 'svg' => 'svg');
$filetype = $types[$parts[1]];
OC_UTIL::addScript('editor','aceeditor/mode-'.$filetype);
}