-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcmdrunner.json
97 lines (97 loc) · 2.17 KB
/
cmdrunner.json
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
[{
"label": "Git Status ",
"cmd": "git status",
"args" : [],
"key" : "Ctrl-Alt-Shift-S"
},{
"label": "Curl ",
"cmd": "curl '$projectDir'",
"args" : [],
"splitChar": "|",
"key" : ""
}, {
"label": "Git Commit All",
"cmd": "git commit -a -m '$0'",
"args" : ["Informe seu comentário aqui!"],
"key" : "Ctrl-Alt-Shift-C"
}, {
"label": "Git Push",
"cmd": "git push",
"args" : [],
"key" : "Ctrl-Alt-Shift-W"
}, {
"label": "Git Pull",
"cmd": "git pull",
"args" : [],
"key" : "Ctrl-Alt-Shift-P"
}, {
"label": "Generate Zip Package",
"cmd": "git archive --format zip -o brackets-command-runner.zip master",
"args" : [],
"key" : "Ctrl-Alt-Shift-Z"
}, {
"label": "Show Current Dir",
"cmd": "pwd",
"args" : [],
"key" : "",
"opts": {
"defaultPath": "./"
}
}, {
"label": "Show Current Dir Selected File",
"cmd": "pwd",
"args" : [],
"key" : "",
"opts": {
"defaultPath": "$dirOfSelectedFile"
}
}, {
"label": "Echo File",
"cmd": "cat $selectedFile",
"args" : [],
"key" : "",
"opts": {
"defaultPath": "$dirOfSelectedFile"
}
}, {
"label": "Infinite Loop",
"cmd": "while :; do echo 'Kill me!'; sleep 1; done",
"args" : [],
"key" : ""
}, {
"label": "Loop Without Console",
"cmd": "while :; do echo 'Kill me!'; sleep 2; done",
"args" : [],
"key" : "",
"opts" : {
"hiddenConsole": true
}
}, {
"label": "Open Firefox",
"cmd": "firefox 'http://$0'",
"args" : ["www.google.com.br"],
"key" : ""
}, {
"label": "Commit And Push",
"cmd": "git commit -a -m '$0' && git push",
"args" : ["Updates..."],
"key" : ""
}, {
"label": "New Commit And Push 2",
"cmd": "git commit -a -m '$0' && git push",
"args" : ["Updates..."],
"key" : ""
}, {
"label": "Run Jboss",
"cmd": "~/Develop/jboss-6.1.0.eldoc/bin/run.sh",
"args" : [],
"key": "",
"opts": {
"killCmd": "~/Develop/jboss-6.1.0.eldoc/bin/shutdown.sh -S"
}
}, {
"label": "Echo With Color",
"cmd" : "echo -e \"\\e[31mHello World\\e[0m\"",
"args": [],
"key": ""
}]