forked from agibsonsw/PrintHtml
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathDefault.sublime-commands
executable file
·53 lines (53 loc) · 1.45 KB
/
Default.sublime-commands
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
42
43
44
45
46
47
48
49
50
51
52
53
[
// Export to HTML
{
"caption": "Export to HTML: Show Export Menu",
"command": "export_html_panel"
},
{
"caption": "Export to HTML: Toggle Annotation Mode",
"command": "toggle_annotation_html_mode"
},
{
"caption": "Export to HTML: Add Annotation",
"command": "add_annotation"
},
{
"caption": "Export to HTML: Edit Annotation",
"command": "edit_annotation"
},
{
"caption": "Export to HTML: Delete Annotation(s)",
"command": "delete_annotations"
},
{
"caption": "Export to HTML: Delete All Annotations",
"command": "clear_annotations"
},
{
"caption": "Export to HTML: Show Annotation Comment",
"command": "show_annotation_comment"
},
{
"caption": "ExportHtml: Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/ExportHtml/ExportHtml.sublime-settings",
"default": "{\n$0\n}\n"
}
},
{
"caption": "ExportHtml: Documentation",
"command": "export_html_open_site",
"args": {
"url": "http://facelessuser.github.io/ExportHtml/"
}
},
{
"caption": "ExportHtml: Quick Start Guide",
"command": "export_html_doc",
"args": {
"page": "${packages}/ExportHtml/quickstart.md"
}
}
]