diff --git a/Userspace/apps/test/libc_test/.vscode/c_boilerplates.code-snippets b/Userspace/apps/test/libc_test/.vscode/c_boilerplates.code-snippets new file mode 100644 index 00000000..2d31ef9d --- /dev/null +++ b/Userspace/apps/test/libc_test/.vscode/c_boilerplates.code-snippets @@ -0,0 +1,6 @@ +{ + "libc_test stub macro": { + "prefix": "zxc", + "body": "int test_$TM_FILENAME_BASE() { return 2; }" + }, +} diff --git a/Userspace/apps/test/libc_test/Fennix libc_test.code-workspace b/Userspace/apps/test/libc_test/Fennix libc_test.code-workspace new file mode 100644 index 00000000..d447c491 --- /dev/null +++ b/Userspace/apps/test/libc_test/Fennix libc_test.code-workspace @@ -0,0 +1,15 @@ +{ + "folders": [ + { + "path": "./" + } + ], + "settings": { + "terminal.integrated.cwd": "./", + "debug.allowBreakpointsEverywhere": true, + "git.alwaysSignOff": true, + "git.defaultBranchName": "master", + "git.openRepositoryInParentFolders": "always", + "C_Cpp.autoAddFileAssociations": false + } +}