-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Default.sublime-commands
118 lines (118 loc) · 3.16 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[
{
"caption": "Preferences: Emmet Settings",
"command": "edit_settings",
"args": { "base_file": "${packages}/Emmet/Emmet.sublime-settings" }
},
{
"caption": "Preferences: Emmet Key Bindings",
"command": "edit_settings",
"args": { "base_file": "${packages}/Emmet/Default (${platform}).sublime-keymap" }
},
{
"caption": "Emmet: Expand Abbreviation",
"command": "emmet_expand_abbreviation"
},
{
"caption": "Emmet: Enter Abbreviation Mode",
"command": "emmet_enter_abbreviation"
},
{
"caption": "Emmet: Capture Abbreviation",
"command": "emmet_capture_abbreviation"
},
{
"caption": "Emmet: Wrap with Abbreviation",
"command": "emmet_wrap_with_abbreviation"
},
{
"caption": "Emmet: Balance Outward",
"command": "emmet_balance",
"args": { "direction": "outward" }
},
{
"caption": "Emmet: Balance Inward",
"command": "emmet_balance",
"args": { "direction": "inward" }
},
{
"caption": "Emmet: Go to Tag Pair",
"command": "emmet_go_to_tag_pair"
},
{
"caption": "Emmet: Remove Tag",
"command": "emmet_remove_tag"
},
{
"caption": "Emmet: Split/Join Tag",
"command": "emmet_split_join_tag"
},
{
"caption": "Emmet: Go to Next Edit Point",
"command": "emmet_go_to_edit_point"
},
{
"caption": "Emmet: Go to Previous Edit Point",
"command": "emmet_go_to_edit_point",
"args": { "previous": true }
},
{
"caption": "Emmet: Select Next Item",
"command": "emmet_select_item"
},
{
"caption": "Emmet: Select Previous Item",
"command": "emmet_select_item",
"args": { "previous": true }
},
{
"caption": "Emmet: Toggle Comment",
"command": "emmet_toggle_comment"
},
{
"caption": "Emmet: Evaluate Math Expression",
"command": "emmet_evaluate_math"
},
{
"caption": "Emmet: Increment Number by 1",
"command": "emmet_increment_number",
"args": { "delta": 1 }
},
{
"caption": "Emmet: Decrement Number by 1",
"command": "emmet_increment_number",
"args": { "delta": -1 }
},
{
"caption": "Emmet: Increment Number by 0.1",
"command": "emmet_increment_number",
"args": { "delta": 0.1 }
},
{
"caption": "Emmet: Decrement Number by 0.1",
"command": "emmet_increment_number",
"args": { "delta": -0.1 }
},
{
"caption": "Emmet: Increment Number by 10",
"command": "emmet_increment_number",
"args": { "delta": 10 }
},
{
"caption": "Emmet: Decrement Number by 10",
"command": "emmet_increment_number",
"args": { "delta": -10 }
},
{
"caption": "Emmet: Update Image Size",
"command": "emmet_update_image_size"
},
{
"caption": "Emmet: Convert data:URL",
"command": "emmet_convert_data_url"
},
{
"caption": "Emmet: Rename Tag",
"command": "emmet_rename_tag"
}
]