-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathCoffeeScript.sublime-settings
52 lines (42 loc) · 1012 Bytes
/
CoffeeScript.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
{
/*
The directory containing your coffee binary. Usually
/usr/local/bin.
*/
"binDir": "/usr/local/bin"
/*
Directories where the watcher will look for .js (lib)
and .coffee (src) files.
*/
, "libDir": ""
, "srcDir": ""
/*
Compile without the top-level function wrapper (coffee -b).
*/
, "noWrapper": true
/*
Globally enable/disable watch mode.
*/
, "watchEnabled": true
/*
Where output from the watcher (coffee -w) will be sent to.
panel - a custom, toggleable (alt+shift+z) panel
status - to the status bar
console - to the python console
log file? probably
growl? maybe
*/
, "watchOutputMode": "panel"
, "watchAutoStart": false
/*
Output success (compiled) or failure (error) messages, or both, or neither...
*/
, "watchOutputOnSuccess": true
, "watchOutputOnFailure": true
/*
Watched files containing errors will have their view focused
and the error highlighted, regardless of watchOutputOnFailure
setting above.
*/
, "watchHighlightErrors": true
}