74 lines
1.1 KiB
Plaintext
74 lines
1.1 KiB
Plaintext
|
version(1);
|
||
|
|
||
|
project_name = "vn";
|
||
|
|
||
|
patterns =
|
||
|
{
|
||
|
"*.c",
|
||
|
"*.cpp",
|
||
|
"*.jai",
|
||
|
"*.odin",
|
||
|
"*.zig",
|
||
|
"*.h",
|
||
|
"*.inc",
|
||
|
"*.bat",
|
||
|
"*.sh",
|
||
|
"*.4coder",
|
||
|
"*.txt",
|
||
|
};
|
||
|
|
||
|
blacklist_patterns =
|
||
|
{
|
||
|
".*",
|
||
|
};
|
||
|
|
||
|
load_paths =
|
||
|
{
|
||
|
{
|
||
|
{ {"."}, .recursive = true, .relative = true }, .os = "win"
|
||
|
},
|
||
|
};
|
||
|
|
||
|
command_list =
|
||
|
{
|
||
|
{
|
||
|
.name = "build",
|
||
|
.out = "*compilation*",
|
||
|
.footer_panel = true,
|
||
|
.save_dirty_files = true,
|
||
|
.cursor_at_end = false,
|
||
|
.cmd =
|
||
|
{
|
||
|
{ "build.bat", .os = "win" },
|
||
|
},
|
||
|
},
|
||
|
|
||
|
{
|
||
|
.name = "run",
|
||
|
.out = "*compilation*",
|
||
|
.footer_panel = true,
|
||
|
.save_dirty_files = true,
|
||
|
.cursor_at_end = false,
|
||
|
.cmd =
|
||
|
{
|
||
|
{ "build\\win32_main.exe", .os = "win" },
|
||
|
},
|
||
|
},
|
||
|
|
||
|
{
|
||
|
.name = "cloc",
|
||
|
.out = "*compilation*",
|
||
|
.footer_panel = true,
|
||
|
.save_dirty_files = true,
|
||
|
.cursor_at_end = false,
|
||
|
.cmd =
|
||
|
{
|
||
|
{ "cloc ./code/*.*", .os = "win" },
|
||
|
},
|
||
|
},
|
||
|
|
||
|
};
|
||
|
|
||
|
fkey_command[2] = "run";
|
||
|
fkey_command[3] = "cloc";
|