-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathbuttons.jsonc
35 lines (35 loc) · 1.08 KB
/
buttons.jsonc
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
// vscode-buttons config
{
"buttons": [
{
"name": "Push to GitHub",
"script": "git push origin master --tags",
"description": "git push origin master --tags"
},
{
"name": "Deploy to WP.org",
"script": "./deploy",
"description": "./deploy (tag or readme/assets)"
},
{
"name": "Plugin Folder",
"script": "open . && exit",
"description": "Project Repo"
},
{
"name": "Product Folder",
"script": "open $CT_WORK'/Products/Plugins/Church Content' && exit",
"description": "Releases, starter content, etc."
},
{
"name": "WordPress.org",
"script": "open https://wordpress.org/plugins/church-theme-content/ && exit",
"description": "church-theme-content"
},
{
"name": "GitHub",
"script": "open https://github.com/churchthemes/church-theme-content && exit",
"description": "church-theme-content"
}
]
}