-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Fuse.sublime-commands
71 lines (71 loc) · 1.45 KB
/
Fuse.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[
{
"caption": "Fuse: Create UX file",
"command":"fuse_create",
"args": {
"type" : "ux",
"paths" : []
}
},
{
"caption": "Fuse: Create Uno file",
"command":"fuse_create",
"args": {
"type" : "uno",
"paths" : []
}
},
{
"caption": "Fuse: Create JS file",
"command":"fuse_create",
"args": {
"type" : "js",
"paths" : []
}
},
{
"caption": "Fuse: Create Json file",
"command":"fuse_create",
"args": {
"type" : "json",
"paths" : []
}
},
{
"caption": "Fuse: Preview Local",
"command": "fuse_preview_current",
"args": {
"type" : "Local"
}
},
{
"caption": "Fuse: Preview Android",
"command": "fuse_preview_current",
"args": {
"type" : "Android"
}
},
{
"caption": "Fuse: Preview iOS",
"command": "fuse_preview_current",
"args": {
"type" : "iOS"
}
},
{
"caption": "Fuse: Focus designer",
"command": "fuse_focus_designer"
},
{
"caption": "Fuse: Sublime user guide",
"command": "open_file",
"args": {"file": "${packages}/Fuse/UserGuide.txt"}
},
{
"caption": "Fuse: Documentation",
"command": "fuse_open_url",
"args": {
"url" : "https://www.fusetools.com/developers/guides"
}
}
]