-
Notifications
You must be signed in to change notification settings - Fork 15
/
Default.sublime-commands
57 lines (57 loc) · 1.23 KB
/
Default.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
[
{
"caption": "Helium: Connect Kernel",
"command": "helium_connect_kernel"
},
{
"caption": "Helium: Start Kernel",
"command": "helium_start_kernel"
},
{
"caption": "Helium: Shutdown Kernel",
"command": "helium_shutdown_kernel"
},
{
"caption": "Helium: Restart Kernel",
"command": "helium_restart_kernel"
},
{
"caption": "Helium: Interrupt Kernel",
"command": "helium_interrupt_kernel"
},
{
"caption": "Helium: Execute Block",
"command": "helium_execute_block"
},
{
"caption": "Helium: Execute Cell",
"command": "helium_execute_cell"
},
{
"caption": "Helium: Execute Cell and Move",
"command": "helium_execute_cell", "args":
{
"move_cursor": "True"
}
},
{
"caption": "Helium: List Kernels",
"command": "helium_list_kernels"
},
{
"caption": "Helium: Get Object Inspection",
"command": "helium_get_object_inspection"
},
{
"caption": "Helium: Clear All Cells",
"command": "helium_clear_all_cells"
},
{
"caption": "Helium: Settings",
"command": "edit_settings", "args":
{
"base_file": "${packages}/Helium/Helium.sublime-settings",
"default": "{\n \"connections\": [\n $0\n ]\n}"
}
}
]