-
Notifications
You must be signed in to change notification settings - Fork 10
/
buttons.jsonc
35 lines (35 loc) · 1.09 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_PLUGIN_PRODUCTS'/Widget Importer & Exporter' && exit",
"description": "Supplemental files"
},
{
"name": "WordPress.org",
"script": "open https://wordpress.org/plugins/widget-importer-exporter/ && exit",
"description": "widget-importer-exporter"
},
{
"name": "GitHub",
"script": "open https://github.com/churchthemes/widget-importer-exporter && exit",
"description": "widget-importer-exporter"
}
]
}