forked from aziz/BetterFindBuffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shortcuts.html
36 lines (34 loc) · 1.38 KB
/
shortcuts.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<html>
<style>
h2 {
margin-top: 0;
color: #7FA0FF;
font-size: 1.2em;
}
ul {
margin: 0;
padding: 5px 20px 5px;
}
.shortcut-key {
font-weight: bold;
color: #009217;
}
code {
font-size: 0.8em;
}
</style>
<body>
<div class="header-wrapper"><h2>Keyboard Shortcuts</h2></div>
<ul>
<li><code><span class="shortcut-key">enter </span>open the file under the cursor</code></li>
<li><code><span class="shortcut-key">o </span>open the file under the cursor</code></li>
<li><code><span class="shortcut-key">a </span>open all files</code></li>
<li><code><span class="shortcut-key">j </span>jump to next search result</code></li>
<li><code><span class="shortcut-key">k </span>jump to previous search result</code></li>
<li><code><span class="shortcut-key">n </span>scroll to next file</code></li>
<li><code><span class="shortcut-key">p </span>scroll to previous file</code></li>
<li><code><span class="shortcut-key">f </span>fold this file and move to the first match on next file</code></li>
<li><code><span class="shortcut-key">? </span>show this shortcuts help</code></li>
</ul>
</body>
</html>