mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-02-26 21:11:18 +01:00
All server variables such as codeMirrorDir, visibleTabs etc now in $ICEcoder array This is so we have a single object to contain all settings, just like the JS equivalent
38 lines
1.7 KiB
PHP
38 lines
1.7 KiB
PHP
<?php include("settings.php");?>
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<title>ICE Coder - <?php echo $ICEcoder["versionNo"];?> :: Help & Shortcuts</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<link rel="stylesheet" type="text/css" href="help.css">
|
|
</head>
|
|
|
|
<body class="help">
|
|
|
|
<h1 id="title">help</h1>
|
|
|
|
<h2>In file manager</h2>
|
|
<span class="key">Delete</span> <span class="shortcut">Delete file</span><br><br>
|
|
|
|
<h2>Within document</h2>
|
|
<span class="key">CTRL <span class="plus">+</span> I</span> <span class="shortcut">Search selected text</span><br>
|
|
<span class="key">Esc</span> <span class="shortcut">Comment / uncomment text</span><br>
|
|
<span class="key">Tab</span> <span class="shortcut">Insert tab / indent selected text</span><br><br>
|
|
|
|
<h2>Anywhere</h2>
|
|
<span class="key">CTRL <span class="plus">+</span> F</span> <span class="shortcut">Find</span><br>
|
|
<span class="key">CTRL <span class="plus">+</span> G</span> <span class="shortcut">Go to line</span><br>
|
|
<span class="key">CTRL <span class="plus">+</span> S</span> <span class="shortcut">Save</span><br>
|
|
<span class="key">CTRL <span class="plus">+</span> Shift <span class="plus">+</span> S</span> <span class="shortcut">Save as...</span><br>
|
|
<span class="key">CTRL <span class="plus">+</span> Enter</span> <span class="shortcut">View webpage</span><br>
|
|
<span class="key">CTRL <span class="plus">+</span> S <span class="plus">+</span> Enter</span> <span class="shortcut">Save & create sticky tab</span><br>
|
|
<span class="key">Esc</span> <span class="shortcut">Cancel tasks</span><br><br>
|
|
|
|
<h2>Clicking logo</h2>
|
|
<span class="key">Left click</span> <span class="shortcut">Help</span><br>
|
|
<span class="key">Right click</span> <span class="shortcut">Settings</span><br>
|
|
|
|
</body>
|
|
|
|
</html>
|