-
Notifications
You must be signed in to change notification settings - Fork 0
/
CPrettify.sublime-settings
55 lines (31 loc) · 1.15 KB
/
CPrettify.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
{
//configuration file
//--------------------------------NOTE!!!----------------------------------------
//always make changes to user settigs, if made here it will not survive updates
//-------------------------------------------------------------------------------
//dont chnage this settings unless you know what you are Doing.
//is responsible for spacing and braces
//this is for choosing from provided cfg file
//you can choose from "ben.cfg" and "defaults.cfg"
//be sure to specify in user settings
"config_file" : "ben.cfg",
//format before leaving file or closing file which
//since no backup is kept quite unstable now
//can potentially result in data loss if some critical issues occur
"autoFormat" : "False",
// allowed file extensions
//currently only supports c
//TODO support cpp and jaca
"json":
{
"file_extensions": [
"c",
"cpp",
"java"
]
},
"unmatched_braces":"Unmatched BRACE_CLOSE",
//if set to true you must have added your cfg file from
//package settings -> CPrettify -> Create cfg file and paste your settings
"user_config_file":"False"
}