From 9c9f5549d77774497bc2b2b77b8b198ab00e3479 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Tue, 28 Jan 2025 11:37:10 +0200 Subject: [PATCH] userspace/libc_test: add VSCode snippets and workspace configuration Signed-off-by: EnderIce2 --- .../.vscode/c_boilerplates.code-snippets | 6 ++++++ .../libc_test/Fennix libc_test.code-workspace | 15 +++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 Userspace/apps/test/libc_test/.vscode/c_boilerplates.code-snippets create mode 100644 Userspace/apps/test/libc_test/Fennix libc_test.code-workspace 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 + } +}