-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.html
41 lines (38 loc) · 1.1 KB
/
options.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
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./css/options.css">
<link rel="stylesheet" href="./css/shared.css">
<script src="./js/map.js"></script>
<script src="./js/shared.js"></script>
<script src="./js/options.js"></script>
</head>
<body>
<div id="savedContainer">
<div id="saved">
Saved
</div>
</div>
<div id="allLabel">
<h2>Built-in shortcuts</h2>
</div>
<table id="mappingTable">
<tr id="head">
<td>Path</td>
<td>Maps to</td>
<td>Query</td>
<td></td>
</tr>
</table>
<div id="viewAll">
<a href="go_all.html">View go/ shortcuts</a>
</div>
<div class="note">
If <code>%s</code> is added to <b>Query</b>, <code>%s</code> is replaced by whatever text you type after the shortcut.
<b>Ex:</b> For <code>b/test</code>, "test" replaces <code>%s</code>.
</div>
<div class="note">
If <code>%s</code> is not in <b>Query</b>, the text you type after the shortcut is appended to <b>Query</b>.
</div>
</body>
</html>