Created
April 16, 2020 21:32
-
-
Save rfaile313/247fcfb2198d9c2194c5ce447521bd08 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version(1); | |
project_name = "Hello World"; | |
patterns = { | |
"*.c", | |
"*.cpp", | |
"*.ds", | |
"*.h", | |
"*.bat", | |
"*.sh", | |
"*.4coder", | |
}; | |
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 = { | |
{ "run.bat", .os = "win" }, | |
}, | |
}, | |
}; | |
fkey_command[1] = "build"; | |
fkey_command[3] = "run"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you man.
I need that.