diff options
Diffstat (limited to 'project.4coder')
| -rw-r--r-- | project.4coder | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/project.4coder b/project.4coder new file mode 100644 index 0000000..c06e98e --- /dev/null +++ b/project.4coder @@ -0,0 +1,29 @@ +version(2); +project_name = "sim8086"; +patterns = { + "*.c", + "*.cpp", + "*.h", + "*.m", + "*.bat", + "*.sh", + "*.4coder", +}; +blacklist_patterns = { + "_old.*", +}; + +paths = +{ + { .path = ".", .recursive = false, .relative = true, }, + { .path = "src", .recursive = true , .relative = true, }, +}; + +load_paths = { + .win = paths, + .linux = paths, + .mac = paths, +}; + +// commands = {}; +// fkey_command = {}; |
