mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-05 20:48:41 +00:00
96d4a3ecf7
Due to historical reasons, the code is in subfolder "1". With SVN removal, we place the code back and remove the annoying "1" folder.
80 lines
2.9 KiB
HTML
80 lines
2.9 KiB
HTML
<!doctype html>
|
|
|
|
<title>CodeMirror: Sublime Text bindings demo</title>
|
|
<meta charset="utf-8"/>
|
|
<link rel=stylesheet href="../doc/docs.css">
|
|
|
|
<link rel="stylesheet" href="../lib/codemirror.css">
|
|
<link rel="stylesheet" href="../addon/fold/foldgutter.css">
|
|
<link rel="stylesheet" href="../addon/dialog/dialog.css">
|
|
<link rel="stylesheet" href="../theme/monokai.css">
|
|
<script src="../lib/codemirror.js"></script>
|
|
<script src="../addon/search/searchcursor.js"></script>
|
|
<script src="../addon/search/search.js"></script>
|
|
<script src="../addon/dialog/dialog.js"></script>
|
|
<script src="../addon/edit/matchbrackets.js"></script>
|
|
<script src="../addon/edit/closebrackets.js"></script>
|
|
<script src="../addon/comment/comment.js"></script>
|
|
<script src="../addon/wrap/hardwrap.js"></script>
|
|
<script src="../addon/fold/foldcode.js"></script>
|
|
<script src="../addon/fold/brace-fold.js"></script>
|
|
<script src="../mode/javascript/javascript.js"></script>
|
|
<script src="../keymap/sublime.js"></script>
|
|
<style type="text/css">
|
|
.CodeMirror {border-top: 1px solid #eee; border-bottom: 1px solid #eee; line-height: 1.3; height: 500px}
|
|
.CodeMirror-linenumbers { padding: 0 8px; }
|
|
</style>
|
|
<div id=nav>
|
|
<a href="http://codemirror.net"><img id=logo src="../doc/logo.png"></a>
|
|
|
|
<ul>
|
|
<li><a href="../index.html">Home</a>
|
|
<li><a href="../doc/manual.html">Manual</a>
|
|
<li><a href="https://github.com/marijnh/codemirror">Code</a>
|
|
</ul>
|
|
<ul>
|
|
<li><a class=active href="#">Sublime bindings</a>
|
|
</ul>
|
|
</div>
|
|
|
|
<article>
|
|
<h2>Sublime Text bindings demo</h2>
|
|
|
|
<p>The <code>sublime</code> keymap defines many Sublime Text-specific
|
|
bindings for CodeMirror. See the code below for an overview.</p>
|
|
|
|
<p>Enable the keymap by
|
|
loading <a href="../keymap/sublime.js"><code>keymap/sublime.js</code></a>
|
|
and setting
|
|
the <a href="../doc/manual.html#option_keyMap"><code>keyMap</code></a>
|
|
option to <code>"sublime"</code>.</p>
|
|
|
|
<p>(A lot of the search functionality is still missing.)
|
|
|
|
<script>
|
|
var value = "// The bindings defined specifically in the Sublime Text mode\nvar bindings = {\n";
|
|
var map = CodeMirror.keyMap.sublime, mapK = CodeMirror.keyMap["sublime-Ctrl-K"];
|
|
for (var key in map) {
|
|
if (key != "Ctrl-K" && key != "fallthrough" && (!/find/.test(map[key]) || /findUnder/.test(map[key])))
|
|
value += " \"" + key + "\": \"" + map[key] + "\",\n";
|
|
}
|
|
for (var key in mapK) {
|
|
if (key != "auto" && key != "nofallthrough")
|
|
value += " \"Ctrl-K " + key + "\": \"" + mapK[key] + "\",\n";
|
|
}
|
|
value += "}\n\n// The implementation of joinLines\n";
|
|
value += CodeMirror.commands.joinLines.toString().replace(/^function\s*\(/, "function joinLines(").replace(/\n /g, "\n") + "\n";
|
|
var editor = CodeMirror(document.body.getElementsByTagName("article")[0], {
|
|
value: value,
|
|
lineNumbers: true,
|
|
mode: "javascript",
|
|
keyMap: "sublime",
|
|
autoCloseBrackets: true,
|
|
matchBrackets: true,
|
|
showCursorWhenSelecting: true,
|
|
theme: "monokai"
|
|
});
|
|
</script>
|
|
|
|
</article>
|