-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMain.sublime-menu
28 lines (27 loc) · 1.12 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
[
{
"id": "tools",
"children":
[{
"caption": "Debugger",
"mnemonic": "D",
"id": "Debugger",
"children":
[
{"caption": "Start Debugging" , "command": "debug" },
{"caption": "Toggle Watcher" , "command": "toggle_watcher" },
{"caption": "Toggle Breakpoint" , "command": "toggle_breakpoint" },
{"caption": "Reeval Expressions", "command": "refresh_expressions" },
{
"caption": "Set Language",
"children":
[
{"caption": "Python2" , "command": "language","args":{"lang":"python2" },"checkbox":true},
{"caption": "Python3" , "command": "language","args":{"lang":"python3" },"checkbox":true},
{"caption": "Python3 (Sublime built-in)", "command": "language","args":{"lang":"python3s"},"checkbox":true}
]
},
]
}]
}
]