2013-08-20 00:53:03 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Caret</title>
|
2013-08-22 06:35:14 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/editor.css">
|
2013-08-20 00:53:03 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2013-08-22 06:35:14 +00:00
|
|
|
<ul class="toolbar">
|
2013-08-22 17:21:22 +00:00
|
|
|
<!--<li>Edit
|
2013-08-22 06:35:14 +00:00
|
|
|
<ul class="menu">
|
2013-08-22 17:21:22 +00:00
|
|
|
<li command="editor:cut">Cut</li>
|
|
|
|
<li command="editor:copy">Copy</li>
|
|
|
|
<li command="editor:paste">Paste</li>
|
|
|
|
<li command="editor:paste-indented">Paste and Indent</li>
|
|
|
|
<hr>
|
|
|
|
<li command="editor:toggle-comment">Toggle Comment</li>
|
|
|
|
<li command="editor:toggle-block-comment">Toggle Block Comment</li>
|
|
|
|
<li command="editor:upper-case">Convert to Upper Case</li>
|
|
|
|
<li command="editor:lower-case">Convert to Lower Case</li>
|
|
|
|
<hr>
|
|
|
|
<li command="editor:find">Find</li>
|
|
|
|
<li command="editor:find-replace">Replace</li>
|
2013-08-22 06:35:14 +00:00
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<li>Tools
|
|
|
|
<ul class="menu">
|
2013-08-22 17:21:22 +00:00
|
|
|
<li command="palette:goto">Go To</li>
|
|
|
|
<li command="palette:goto-symbol"> ...Symbol</li>
|
|
|
|
<li command="palette:goto-line"> ...Line</li>
|
|
|
|
<li command="palette:command">Command Palette</li>
|
|
|
|
<li command="app:settings">Settings</li>
|
|
|
|
<hr>
|
|
|
|
<li command="app:about">About Caret</li>
|
2013-08-22 06:35:14 +00:00
|
|
|
</ul>
|
2013-08-22 17:21:22 +00:00
|
|
|
</li>-->
|
2013-08-22 06:35:14 +00:00
|
|
|
</ul>
|
2013-08-21 00:35:25 +00:00
|
|
|
<div class="tabs"></div>
|
|
|
|
|
2013-08-20 00:53:03 +00:00
|
|
|
<div class="editor-container">
|
|
|
|
<div id="editor"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="js/ace/ace.js"></script>
|
|
|
|
<script data-main="./js/main.js" src="require.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|