-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathDefault.sublime-commands
47 lines (47 loc) · 975 Bytes
/
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
[
{
"caption": "Gulp",
"command": "gulp"
},
{
"caption": "Gulp (silent)",
"command": "gulp",
"args": { "silent": true }
},
{
"caption": "Gulp: Run last task",
"command": "gulp_last"
},
{
"caption": "Gulp: Run arbitrary task",
"command": "gulp_arbitrary"
},
{
"caption": "Gulp: Show panel",
"command": "gulp_show_panel"
},
{
"caption": "Gulp: Hide panel",
"command": "gulp_hide_panel"
},
{
"caption": "Gulp: Kill specific running task",
"command": "gulp_kill_task"
},
{
"caption": "Gulp: Kill running tasks",
"command": "gulp_kill"
},
{
"caption": "Gulp: List plugins",
"command": "gulp_plugins"
},
{
"caption": "Gulp: Delete cache",
"command": "gulp_delete_cache"
},
{
"caption": "Gulp: Exit editor killing running tasks",
"command": "gulp_exit"
}
]