-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathSeeing Is Believing.sublime-settings
32 lines (25 loc) · 1.09 KB
/
Seeing Is Believing.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
{
// If you want to run a specific Ruby from a specific location,
// then you can override the command it uses to invoke Ruby.
"ruby_command": "ruby",
// environment variables to set before running
"environment_variables": {
"LANG": "en_US.UTF-8"
},
// get a list of all these options and what they do by going to the console
// and typing `seeing_is_believing --help`
"flags": {
// max length of the entire line (only truncates results, not source lines)
"--line-length": 500,
// select the alignment strategy:
// file (DEFAULT) => the entire file is at the same alignment
// chunk => each chunk of code is at the same alignment
// line => each line is at its own alignment
"--alignment-strategy": "chunk",
// omit for no timeout (warning, can freeze your editor up if you have an infinite loop)
"--timeout-seconds": 12,
// stops recording after this many results, which keeps it from slowing down
// in big loops, and resuces spam in the same way that the --line-length does
"--max-line-captures": 200,
}
}