We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa8a926 commit fcafb4bCopy full SHA for fcafb4b
README.md
@@ -36,3 +36,10 @@ This plugin enables automatic code formatting on save by default using
36
```
37
let g:zig_fmt_autosave = 0
38
39
+
40
+The default compiler which gets used by `:make` (`:help :compiler` for details)
41
+is `zig_build` and it runs `zig build`. The other options are:
42
+ * `:compiler zig_test` which runs `zig test` on the current file.
43
+ * `:compiler zig_build_exe` which runs `zig build-exe` on the current file.
44
+ * `:compiler zig` which requires that a subcommand is passed as an argument
45
+ and it runs on the current file.
0 commit comments