-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathoptions.html
More file actions
37 lines (35 loc) · 1.08 KB
/
Copy pathoptions.html
File metadata and controls
37 lines (35 loc) · 1.08 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<form>
<div>
<br>
<input type="checkbox" id="line-wrap" name="line-wrap">
<label>Enable line wrapping by default</label>
</div>
<div>
<br>
<input type="checkbox" id="patch-detect" name="patch-detect">
<label title="When detecting a patch (subject contains '[PATCH]'), turn off line wrapping and warn if wrapping is enabled while trying to send the message.">
Enable patch detection
</label>
<title>
When detecting a patch (message subject contains "[PATCH]"), turn off
line wrapping and warn if wrapping is enabled while trying to send
the message.
</title>
</div>
<div>
<br>
<input type="checkbox" id="use-alt-w" name="use-alt-w">
<label title="Note that Alt-W may collide with menu accelerators or fail to work on Mac.">
Use Alt-W as shortcut key
</label>
</div>
</form>
<script src="options.js"></script>
</body>
</html>