Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Indentation function doesn't handle if expressions well #78

Closed
michaelbartnett opened this issue Jan 3, 2023 · 0 comments · Fixed by #79
Closed

Indentation function doesn't handle if expressions well #78

michaelbartnett opened this issue Jan 3, 2023 · 0 comments · Fixed by #79

Comments

@michaelbartnett
Copy link
Contributor

I don't have my config setup to format on save so I rely on the mode indentation a lot, and it currently will produce this:

fn sign(i: i32) i32 {
    return if (i == 0)
        0
        else if (i > 0)
        -1
        else
        -1;
}

While the preferred style according to zig fmt would be:

fn sign(i: i32) i32 {
    return if (i == 0)
        0
    else if (i > 0)
        -1
    else
        -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant