forked from SublimeText-Markdown/MarkdownEditing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.sublime-commands
More file actions
76 lines (76 loc) · 2.1 KB
/
Default.sublime-commands
File metadata and controls
76 lines (76 loc) · 2.1 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[
{
"caption": "MarkdownEditing: Fix Underlined Headers",
"command": "fix_all_underlined_headers"
},
{
"caption": "MarkdownEditing: Convert Underlined Headers to ATX",
"command": "convert_to_atx"
},
{
"caption": "MarkdownEditing: Add Missing Link Labels",
"command": "gather_missing_link_markers"
},
{
"caption": "Preferences: MarkdownEditing Settings – Default",
"command": "open_file", "args":
{
"file": "${packages}/MarkdownEditing/Markdown.sublime-settings"
}
},
{
"caption": "Preferences: MarkdownEditing Settings – User",
"command": "open_file", "args":
{
"file": "${packages}/User/Markdown.sublime-settings"
}
},
{
"caption": "MarkdownEditing: Markdown Lint",
"command": "markdown_lint"
},
{
"caption": "MarkdownEditing: Switch List Bullet Type",
"command": "switch_list_bullet_type"
},
{
"caption": "MarkdownEditing: Magic Footnotes Command",
"command": "magic_footnotes"
},
{
"caption": "MarkdownEditing: Gather Missing Footnotes",
"command": "gather_missing_footnotes"
},
{
"caption": "MarkdownEditing: Jump Reference",
"command": "reference_jump"
},
{
"caption": "MarkdownEditing: New Reference",
"command": "reference_new_reference"
},
{
"caption": "MarkdownEditing: New Inline Link",
"command": "reference_new_inline_link"
},
{
"caption": "MarkdownEditing: New Inline Image",
"command": "reference_new_inline_image"
},
{
"caption": "MarkdownEditing: New Image",
"command": "reference_new_image"
},
{
"caption": "MarkdownEditing: New Footnote",
"command": "reference_new_footnote"
},
{
"caption": "MarkdownEditing: Delete Reference",
"command": "reference_delete_reference"
},
{
"caption": "MarkdownEditing: Organize References",
"command": "reference_organize"
}
]