From 6a8a204020449fee3d8ef5e6175932e3731389f0 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Mon, 14 Aug 2023 21:45:25 +0100 Subject: Misc fixes: - fix template in comments.html: whitespace before tag names is not allowed - update mustache-zig version - null-terminate field names in zig struts, for C interop with PQfnumber function --- zig-comments/.vscode/launch.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 zig-comments/.vscode/launch.json (limited to 'zig-comments/.vscode') diff --git a/zig-comments/.vscode/launch.json b/zig-comments/.vscode/launch.json new file mode 100644 index 0000000..08ebd2a --- /dev/null +++ b/zig-comments/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "lldb", + "request": "launch", + "name": "Debug", + "program": "${workspaceFolder}/zig-out/bin/comments", + "args": [], + "cwd": "${workspaceFolder}" + } + ] +} \ No newline at end of file -- cgit v1.2.3-ZIG