-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Clojure Sublimed.sublime-settings
56 lines (48 loc) · 1.95 KB
/
Clojure Sublimed.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
// Enable debug logging in Sublime Text console
"debug": false,
// If evaluation takes longer than this, print elapsed time
// Set to null to disable
"elapsed_threshold_ms": 100,
// Animation to display while waiting for evaluation to finish.
//
// Some ideas:
//
// ["\\", "|", "/", "-"]
//
// ["[=----]", "[-=---]", "[--=--]", "[---=-]",
// "[----=]", "[---=-]", "[--=--]", "[-=---]"]
//
// ["▓░░░░", "░▓░░░", "░░▓░░", "░░░▓░",
// "░░░░▓", "░░░▓░", "░░▓░░", "░▓░░░"]
//
// ["⠏", "⠛", "⠹", "⢸", "⣰", "⣤", "⣆", "⡇"]
//
// ["▁▂▃▄▅", "▂▁▂▃▄", "▃▂▁▂▃", "▄▃▂▁▂", "▅▄▃▂▁",
// "▆▅▄▃▂", "▇▆▅▄▃", "█▇▆▅▄", "▇█▇▆▅", "▆▇█▇▆",
// "▅▆▇█▇", "▄▅▆▇█", "▃▄▅▆▇", "▂▃▄▅▆"]
//
// Set to 1-element array to disable animation:
//
// ["..."]
//
"progress_phases": ["🕐", "🕑", "🕒", "🕓", "🕔", "🕕", "🕖", "🕗", "🕘", "🕙", "🕚", "🕛"],
// how often to update animation
"progress_interval_ms": 100,
// values larger than this will be truncated. Set to 0 to disable truncation
"print_quota": 4096,
// When true, all evals will happen in a single session. This makes
// dynamic vars like `*e` or `*warn-on-reflection*` persistent, but also
// makes all evaluations strictly sequential (new eval will not start until
// all the previous ones have finished).
//
// False by default (enables parallel evals).
"eval_in_session": false,
// A form to be evaluated in shared session and inherited by all evals
// E.g. (set! *warn-on-reflection* true)
"eval_shared": "",
// formatter, "sublimed" or "cljfmt". Latter requires `cljfmt` to be on $PATH
"formatter": "sublimed",
// reformat file on save, false by default
"format_on_save": false
}