-
Notifications
You must be signed in to change notification settings - Fork 0
/
ibamr.sublime-project.template
68 lines (68 loc) · 1.76 KB
/
ibamr.sublime-project.template
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
57
58
59
60
61
62
63
64
65
66
67
68
{
"build_systems":
[
{
"file_regex": "^(..[^:\n]*):([0-9]+):?([0-9]+)?:? (.*)$",
"keyfiles":
[
"Makefile",
"makefile"
],
"name": "IBAMR",
"selector": "source.makefile",
"shell_cmd": "make -kw",
"syntax": "make_output.sublime-syntax",
"variants":
[
{
"name": "j8",
"shell_cmd": "make -kwj8"
},
{
"name": "clean",
"shell_cmd": "make -kw clean"
},
{
"name": "examples",
"shell_cmd": "make -kw examples"
},
{
"name": "examples j8",
"shell_cmd": "make -kwj8 examples"
}
],
"working_dir": "${project_path}/../ibamr-objs-dbg"
}
],
"folders":
[
{
"path": "."
}
],
"settings":
{
"LSP":
{
"clangd":
{
"command":
[
"/usr/local/opt/llvm/bin/clangd",
"--background-index",
"--clang-tidy",
"--completion-parse=auto",
"--completion-style=detailed",
"--header-insertion=iwyu",
"--pch-storage=memory",
],
"enabled": true
}
},
"compile_commands": "${project_path}",
"indent_to_bracket": true,
"show_definitions": false,
"tab_size": 4,
"translate_tabs_to_spaces": true
}
}