zulip/templates/zephyr/keyboard_shortcuts.html

151 lines
5.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="modal hide" id="keyboard-shortcuts" tabindex="-1" role="dialog"
aria-labelledby="keyboard-shortcuts-label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="keyboard-shortcuts-label">Keyboard shortcuts</h3>
</div>
<div class="modal-body">
<div class="accordion" id="hotkeys-accordion">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#hotkeys-accordion" href="#hotkeys-composing">
Composing messages
</a>
</div>
<div id="hotkeys-composing" class="accordion-body collapse in">
<div class="accordion-inner">
<table class="hotkeys_table table table-striped table-bordered table-condensed">
<tr>
<td class="hotkey">c</td>
<td class="definition">Compose new stream message</td>
</tr>
<tr>
<td class="hotkey">C</td>
<td class="definition">Compose new private message</td>
</tr>
<tr>
<td class="hotkey">r</td>
<td class="definition">Respond to message</td>
</tr>
<tr>
<td class="hotkey">R</td>
<td class="definition">Respond to author</td>
</tr>
<tr>
<td class="hotkey">&lt;Tab&gt;</td>
<td class="definition">Switch between composing stream and private message</td>
</tr>
<tr>
<td class="hotkey">&lt;Tab&gt; and Enter</td>
<td class="definition">Send message</td>
</tr>
<tr>
<td class="hotkey">Esc</td>
<td class="definition">Cancel compose</td>
</tr>
</table>
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#hotkeys-accordion" href="#hotkeys-narrowing">
Narrowing
</a>
</div>
<div id="hotkeys-narrowing" class="accordion-body collapse">
<div class="accordion-inner">
<table class="hotkeys_table table table-striped table-bordered table-condensed">
<tr>
<td class="hotkey">s</td>
<td class="definition">Narrow by stream</td>
</tr>
<tr>
<td class="hotkey">S</td>
<td class="definition">Narrow by subject</td>
</tr>
<tr>
<td class="hotkey">v</td>
<td class="definition">Narrow to all private messages</td>
</tr>
<tr>
<td class="hotkey">Esc</td>
<td class="definition">Return to home view</td>
</tr>
</table>
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#hotkeys-accordion" href="#hotkeys-scrolling">
Navigation
</a>
</div>
<div id="hotkeys-scrolling" class="accordion-body collapse">
<div class="accordion-inner">
<table class="hotkeys_table table table-striped table-bordered table-condensed">
<tr>
<td class="hotkey">Down or j</td>
<td class="definition">Next message</td>
</tr>
<tr>
<td class="hotkey">Up or k</td>
<td class="definition">Previous message</td>
</tr>
<tr>
<td class="hotkey">/</td>
<td class="definition">Initiate a search</td>
</tr>
<tr>
<td class="hotkey">Home</td>
<td class="definition">First message</td>
</tr>
<tr>
<td class="hotkey">End</td>
<td class="definition">Last message</td>
</tr>
<tr>
<td class="hotkey">Page Up</td>
<td class="definition">Scroll up several messages</td>
</tr>
<tr>
<td class="hotkey">Page Down</td>
<td class="definition">Scroll down several messages</td>
</tr>
<tr>
<td class="hotkey">Spacebar</td>
<td class="definition">Scroll down several messages</td>
</tr>
</table>
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#hotkeys-accordion" href="#hotkeys-misc">
Miscellaneous
</a>
</div>
<div id="hotkeys-misc" class="accordion-body collapse">
<div class="accordion-inner">
<table class="hotkeys_table table table-striped table-bordered table-condensed">
<tr>
<td class="hotkey">?</td>
<td class="definition">Open keyboard shortcut help</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-primary" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
</div>