Skip to content

Instantly share code, notes, and snippets.

@Himujjal
Last active April 10, 2021 17:47
Show Gist options
  • Save Himujjal/7fde238bfc259638141073b7dda3949c to your computer and use it in GitHub Desktop.
Save Himujjal/7fde238bfc259638141073b7dda3949c to your computer and use it in GitHub Desktop.
Zig fmt tips and tricks

Zig FMT is consistent and has a immutable style. But sometimes its hard to get around it. Here are a few places where Zig FMT might help but you may not know it:

When you need to make sure structs are multiline:

By default zig fmt formats struct fields into one line:

const MyStruct = { hello: "darkness", my_old: "friend" };

Just add a comma at the end of the last field value, run your formatter in your favourite text editor. And:

const MyStruct = {
  hello: "darkness",
  my_old: "friend", // <--- this comma
};

Long If conditions

Sometimes we really like long if conditions in our code. Zig default is a single line:

if (hey == 1 and jude == 2 and dont == true and let == false and true or me == 2 and down) {
  // ...
}

To make a part of it multiple line, simply add a line break (enter key) just after and or or. Zig fmt respects line breaks in this case. Run zig formatter and:

if (hey == 1 and
    jude == 2 and
    dont == true and let == false and true or
    me == 2 and down) {
  // ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment