-
Notifications
You must be signed in to change notification settings - Fork 8
/
cd.sublime-project
49 lines (49 loc) · 1.24 KB
/
cd.sublime-project
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
{
"folders":
[
{
"path": ".",
"folder_exclude_patterns": [".git", "node_modules", "dist"],
}
],
"settings":
{
"rulers":
[
100
],
"tab_size": 2,
"translate_tabs_to_spaces": true,
"wrap_as_you_type_paragraphs":
[
{
"first_line_regex": "^@(arg|argument|prop|property|param(\\[(in|out|in,out)\\])?)\\s+([^\\{\\s]\\S*|\\{[^\\}]*\\})\\s+([^\\[\\s]\\S*|\\[[^\\]]*\\])\\s+",
"indent": " "
},
{
"first_line_regex": "^@(exception|result|returns?|throws?)\\s+([^\\{\\s]\\S*|\\{[^\\}]*\\})\\s+",
"indent": " "
},
{
"first_line_regex": "^@(defgroup|link|retval|section|see|snippet|snippetdoc|snippetlineno|source|subsection)\\s+\\S+\\s+",
"indent": " "
},
{
"first_line_regex": "^@([a-zA-Z][a-zA-Z\\[,\\]]*(\\s+|$)|$)",
"indent": " "
}
],
"wrap_as_you_type_sections":
[
{
"line_start": " * ",
"selector": "comment.block - punctuation.comment"
},
{
"combining_selector": "source - (comment | constant | entity | invalid | keyword | punctuation | storage | string | variable)",
"line_start": "//",
"selector": "comment.line"
}
]
}
}