-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.sublime-commands
More file actions
executable file
·42 lines (42 loc) · 1.21 KB
/
Copy pathDefault.sublime-commands
File metadata and controls
executable file
·42 lines (42 loc) · 1.21 KB
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
[
{
"caption": "Panbuild: Build target",
"command": "prompt_panbuild",
"args": {"action":"build-target"}
},
{
"caption": "Panbuild: Remove target",
"command": "prompt_panbuild",
"args": {"action":"remove-target"}
},
{
"caption": "Panbuild: Add target",
"command": "prompt_panbuild_target",
"args": {"action":"add-target"}
} ,
{
"caption": "Panbuild: Clean",
"command": "prompt_panbuild_target",
"args": {"action":"clean"}
} ,
{
"caption": "Panbuild: Open build file",
"command": "prompt_panbuild_target",
"args": {"action":"open-file"}
},
{
"caption": "Panbuild: Create build file",
"command": "prompt_panbuild_target",
"args": {"action":"create-file","Dual": 0}
},
{
"caption": "Panbuild: Create build file (Dual Markdown)",
"command": "prompt_panbuild_target",
"args": {"action":"create-file","Dual": 1}
},
{
"caption": "Panbuild: Delete build file",
"command": "prompt_panbuild_target",
"args": {"action":"delete-file"}
},
]