-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathproject.4coder
More file actions
43 lines (36 loc) · 908 Bytes
/
project.4coder
File metadata and controls
43 lines (36 loc) · 908 Bytes
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
version(2);
project_name = "4coder QOL";
indent_with_tabs = false;
indent_width = 2;
session_file = ".session.4coder";
patterns = {
"*.c",
"*.cpp",
"*.h",
"*.hpp",
"*.m",
"*.mm",
"*.bat",
"*.sh",
"*.4coder",
"*.txt",
};
blacklist_patterns = { ".*", };
paths = {
{ .path = ".", .recursive = true, .relative = true, },
};
load_paths = {
.win = paths,
.mac = paths,
.linux = paths,
};
commands = {
.run = { .win = "run_test.bat", .out = "*compilation*", .footer_panel=true, .save_dirty_files=true, .cursor_at_end=true, },
.build = { .win = "build.bat", .out = "*compilation*", .footer_panel=true, .save_dirty_files=true, .cursor_at_end=true, },
.debugger = { .win = "remedybg .", .out = "*compilation*", .footer_panel=true, .save_dirty_files=false, .cursor_at_end=false, },
};
fkey_command = {
.F2 = "run",
.F5 = "build",
.F9 = "debugger",
};