Techatrix
                                            Techatrix
                                        
                                    This appears to be fixed by https://github.com/zigtools/zls/pull/1536.
> Is the following related to the this problem or should I open another issue? I think this should be tracked as a separate issue.
FYI: Zig has an open proposal for changes to alignment in zig fmt https://github.com/ziglang/zig/issues/17145
here is a reduction that doesn't use `std.ArrayList`: ```zig fn Boxed(comptime T: type) type { return struct { inner: T }; } const Some = struct { alpha: u32 };...
I don't think there is any special handling for underscores. If your editor supports markdown lsp responses (hard to tell from your screenshot) this may be because underscores should be...
possibly related to #985
#1105 is trying to solve a similar problem with a different approach. Compared to that Issue, this one appears to be much harder to implemented because how do handle functions...
This is very similar to an Issue we had in ZLS Discord [here](https://discord.com/channels/997174129532866701/997247590477336576/1079195769657106582). This code snippet should also showcase the given problem: ```zig pub var state: S = undefined; pub...
This looks kinda [sus](https://github.com/zigtools/sus). Let's eject this issue.
What is the motivation for placing the `build.zig` into a separate subdirectory? ZLS searches for the `build.zig` by looking into the parent directories of your zig files which will not...