修复 php 输入问题

This commit is contained in:
Seven Yu
2019-12-03 12:19:20 +08:00
parent 6e437d2e64
commit ab5dd69db3
19 changed files with 4746 additions and 0 deletions

17
codemirror/mode/css/gss_test.js vendored Normal file
View File

@@ -0,0 +1,17 @@
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: https://codemirror.net/LICENSE
(function() {
"use strict";
var mode = CodeMirror.getMode({indentUnit: 2}, "text/x-gss");
function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1), "gss"); }
MT("atComponent",
"[def @component] {",
"[tag foo] {",
" [property color]: [keyword black];",
"}",
"}");
})();