matchBrackets now included and enabled

This commit is contained in:
Matt Pass
2016-04-06 22:49:32 +01:00
parent 095d626883
commit 1fce9834db
2 changed files with 8 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@@ -17,7 +17,7 @@ $t = $text['editor'];
codemirror-compressed.js
incls: codemirror
modes: clike, coffeescript, css, erlang, go, htmlmixed, javascript, julia, lua, markdown, perl, php, python, ruby, sass, sql, xml, yaml
addon: brace-fold, closebrackets, closetag, css-hint, html-hint, javascript-hint, javascript-lint, lint, match-highlighter, searchcursor, show-hint, sql-hint, trailingspace, xml-fold, xml-hint
addon: brace-fold, closebrackets, closetag, css-hint, html-hint, javascript-hint, javascript-lint, lint, match-highlighter, matchbrackets, searchcursor, show-hint, sql-hint, trailingspace, xml-fold, xml-hint
//-->
<script src="<?php echo $ICEcoder["codeMirrorDir"]; ?>/lib/codemirror-compressed.js?microtime=<?php echo microtime(true);?>"></script>
<?php
@@ -236,6 +236,7 @@ function createNewCMInstance(num) {
indentWithTabs: top.ICEcoder.indentWithTabs,
indentUnit: top.ICEcoder.indentSize,
tabSize: top.ICEcoder.indentSize,
matchBrackets: true,
electricChars: false,
autoCloseTags: true,
autoCloseBrackets: true,