-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDefault (Windows).sublime-keymap
executable file
·72 lines (72 loc) · 2.66 KB
/
Default (Windows).sublime-keymap
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
[
{
"keys": ["ctrl+1"], "command": "markdown_helper",
"args": {"md_type": "h1"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
,{
"keys": ["ctrl+2"], "command": "markdown_helper",
"args": {"md_type": "h2"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
,{
"keys": ["ctrl+3"], "command": "markdown_helper",
"args": {"md_type": "h3"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
,{
"keys": ["ctrl+4"], "command": "markdown_helper",
"args": {"md_type": "ul"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
,{
"keys": ["ctrl+shift+4"], "command": "markdown_helper",
"args": {"md_type": "tl"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
,{
"keys": ["ctrl+5"], "command": "markdown_helper",
"args": {"md_type": "ol"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
,{
"keys": ["ctrl+6"], "command": "markdown_helper",
"args": {"md_type": "code"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
,{
"keys": ["ctrl+shift+6"], "command": "markdown_helper",
"args": {"md_type": "icode"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
,{
"keys": ["ctrl+7"], "command": "markdown_helper",
"args": {"md_type": "lxf"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
,{
"keys": ["ctrl+shift+7"], "command": "markdown_helper",
"args": {"md_type": "ilxf"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
,{
"keys": ["ctrl+b"], "command": "markdown_helper",
"args": {"md_type": "bt"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
,{
"keys": ["ctrl+i"], "command": "markdown_helper",
"args": {"md_type": "it"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
,{
"keys": ["ctrl+shift+d"], "command": "markdown_helper",
"args": {"md_type": "dt"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
,{
"keys": ["ctrl+m"], "command": "markdown_helper",
"args": {"md_type": "img"},
"context": [{"key": "helper_is_enabled", "operator": "equal", "operand": ""}]
}
]