-
Notifications
You must be signed in to change notification settings - Fork 7
/
Main.sublime-menu
90 lines (90 loc) · 3.01 KB
/
Main.sublime-menu
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
[
{
"id": "tools",
"children":
[
{
"id": "graphvizer",
"caption": "Graphvizer",
"children":
[
{
"caption": "Open Rendered Image",
"command": "open_image"
},
{
"caption": "Show Graphvizer Panel",
"command": "show_panel",
"args": {"panel": "output.graphvizer_panel"}
},
{
"id": "layout_engine",
"caption": "Layout Engine",
"children":
[
{"caption": "dot", "command": "set_layout_engine", "args": {"layout_engine": "dot"}, "checkbox": true},
{"caption": "neato", "command": "set_layout_engine", "args": {"layout_engine": "neato"}, "checkbox": true},
{"caption": "fdp", "command": "set_layout_engine", "args": {"layout_engine": "fdp"}, "checkbox": true},
{"caption": "sfdp", "command": "set_layout_engine", "args": {"layout_engine": "sfdp"}, "checkbox": true},
{"caption": "twopi", "command": "set_layout_engine", "args": {"layout_engine": "twopi"}, "checkbox": true},
{"caption": "circo", "command": "set_layout_engine", "args": {"layout_engine": "circo"}, "checkbox": true}
]
},
{
"id": "output format",
"caption": "Output Format",
"children":
[
{"caption": "png", "command": "set_output_format", "args": {"output_format": "png"}, "checkbox": true},
{"caption": "jpg", "command": "set_output_format", "args": {"output_format": "jpg"}, "checkbox": true},
{"caption": "svg", "command": "set_output_format", "args": {"output_format": "svg"}, "checkbox": true},
{"caption": "pdf", "command": "set_output_format", "args": {"output_format": "pdf"}, "checkbox": true},
{"caption": "gif", "command": "set_output_format", "args": {"output_format": "gif"}, "checkbox": true},
{"caption": "bmp", "command": "set_output_format", "args": {"output_format": "bmp"}, "checkbox": true},
{"caption": "ps", "command": "set_output_format", "args": {"output_format": "ps"}, "checkbox": true},
{"caption": "ps2", "command": "set_output_format", "args": {"output_format": "ps2"}, "checkbox": true},
{"caption": "psd", "command": "set_output_format", "args": {"output_format": "psd"}, "checkbox": true}
]
}
]
}
]
},
{
"id": "preferences",
"children":
[
{
"id": "package-settings",
"children":
[
{
"caption": "Graphvizer",
"children":
[
{
"caption": "Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/Graphvizer/Graphvizer.sublime-settings",
"default": "// Settings in here override those in the left side\n\n{\n\t$0\n}\n"
}
},
{
"caption": "-"
},
{
"caption": "Key Bindings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/Graphvizer/Default ($platform).sublime-keymap",
"default": "// Key Bindings in here override those in the left side\n\n[\n\t$0\n]\n"
}
}
]
}
]
}
]
}
]