-
Notifications
You must be signed in to change notification settings - Fork 15
/
Helium.sublime-settings
33 lines (27 loc) · 1.17 KB
/
Helium.sublime-settings
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
{
"cell_delimiter_pattern": "^(#\\s?%%)|(# <codecell>)\\s*$",
// Regex pattern to find code cell blocks delimiters
// The default value hits the patterns below.
// #%%
// # %%
// # <codecell>
// Whether use Helium' autocomplete powered by Jupyter kernel.
"complete": true,
// Timeout to get completion (in seconds).
"complete_timeout": 0.5,
// Set to true to show output in current view, like Jupyter
"inline_output": false,
// Set true to show the executed code in the output
"output_code": false,
// "image_size" controls the size of the image. It can take one three values:
// "original": The image is displayed with its original size.
// "resize_to_window": The image is rescaled to match the size of the window.
// "optimal": The image is either resized or has its original size,
// whichever is smaller.
// The default is "optimal".
"image_size": "optimal",
// If you use kernels located in the directory other than default search path
// (see http://jupyter-client.readthedocs.io/en/stable/kernels.html#kernel-specs),
// set their path as below.
// "jupyter_path": "/path/to/kernel"
}