forked from charlesroper/ZenCoding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-commands
104 lines (104 loc) · 2.19 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[
{
"caption": "Zen Coding: Zen as you type"
, "command": "zen_as_you_type"
}
, {
"caption": "Zen Coding: Wrap zen as you type"
, "command": "wrap_zen_as_you_type"
}
, {
"caption": "Zen Coding: Endcode/decode base64"
, "command": "run_zen_action"
, "args": {
"action": "encode_decode_base64"
}
}
, {
"caption": "Zen Coding: Evaluate math expression"
, "command": "run_zen_action"
, "args": {
"action": "evaluate_math_expression"
}
}
, {
"caption": "Zen Coding: Select matching tag name"
, "command": "run_zen_action"
, "args": {
"action": "match_pair_tagname"
}
}
, {
"caption": "Zen Coding: Go to matching tag"
, "command": "run_zen_action"
, "args": {
"action": "go_to_matching_pair"
}
}
, {
"caption": "Zen Coding: Find and select tag pair"
, "command": "run_zen_action"
, "args": {
"action": "match_pair"
, "direction": "out"
, "syntax": null
}
}
, {
"caption": "Zen Coding: Select between tags"
, "command": "run_zen_action"
, "args": {
"action": "match_pair_inward"
}
}
, {
"caption": "Zen Coding: Merge lines"
, "command": "run_zen_action"
, "args": {
"action": "merge_lines"
}
}
, {
"caption": "Zen Coding: Move caret to next edit point"
, "command": "run_zen_action"
, "args": {
"action": "next_edit_point"
}
}
, {
"caption": "Zen Coding: Move caret to previous edit point"
, "command": "run_zen_action"
, "args": {
"action": "prev_edit_point"
}
}
, {
"caption": "Zen Coding: Delete tag"
, "command": "run_zen_action"
, "args": {
"action": "remove_tag"
}
}
, {
"caption": "Zen Coding: Select next item"
, "command": "run_zen_action"
, "args": {
"action": "select_next_item"
}
}
, {
"caption": "Zen Coding: Select previous item"
, "command": "run_zen_action"
, "args": {
"action": "select_previous_item"
}
}
, {
"caption": "Zen Coding: Split or join tag"
, "command": "run_zen_action"
, "args": {
"action": "split_join_tag"
, "profile_name": null
}
}
]