-
Notifications
You must be signed in to change notification settings - Fork 8
/
Side Bar.sublime-menu
49 lines (49 loc) · 1.43 KB
/
Side Bar.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
[
{
"caption": "PySide",
"id": "pyside_commands",
"children":
[
{
"caption": "Create Project",
"command": "create_qt_project"
},
{
"caption": "Open file with Qt Designer",
"command": "open_file_in_designer"
},
{
"caption": "Create new Qt Designer file from template",
"command": "new_dialog",
"args": {"dirs": []}
},
{
"caption": "Open file with Qt Linguist",
"command": "open_in_linguist"
},
{
"caption": "Run lupdate to generate TS files",
"command": "generate_translations",
"args": {"files": [], "dirs": []}
},
{
"caption": "Compile resource file",
"command": "compile_resource",
"args": {"files": []}
},
{
"caption": "Compile UI",
"command": "compile_ui",
"args": {"files": []}
},
{
"caption": "Convert to PyQt4 Syntax",
"command": "convert_py_side2_py_qt4"
},
{
"caption": "Convert to PySide Syntax",
"command": "convert_py_qt42_py_side"
}
]
}
]