This commit is contained in:
Claude 2016-09-02 20:45:51 +02:00
parent 7279b32453
commit 810d0691f7

View File

@ -9,8 +9,23 @@ if (!defined('BASEPATH')) exit('No direct script access allowed');
//codemirror languages //codemirror languages
$config['ace_languages'] = array( $config['ace_languages'] = array(
'html5' => 'htmlmixed', 'text' => 'plain_text',
'html5' => 'html',
'css' => 'css', 'css' => 'css',
'javascript' => 'javascript', 'javascript' => 'javascript',
'php' => 'php', 'php' => 'php',
'python' => 'python',
'ruby' => 'ruby',
'lua' => 'lua',
'erlang' => 'erlang',
'go' => 'golang',
'c' => 'c_cpp',
'cpp' => 'c_cpp',
'diff' => 'diff',
'latex' => 'latex',
'sql' => 'sql',
'xml' => 'xml',
'abap' => 'abap',
'actionscript' => 'actionscript',
'actionscript3' => 'actionscript',
); );