xdBronch

Results 33 issues of xdBronch

### Zig Version 0.12.0-dev.3245+4f782d1e8 ### Steps to Reproduce and Observed Behavior add autodoc generation like the following to a build.zig and run `zig build` ```zig b.installDirectory(.{ .source_dir = exe.getEmittedDocs(), .install_dir...

bug
zig build system
autodoc

*moved from https://github.com/ziglang/zig/issues/18866* ### Steps to Reproduce and Observed Behavior in a zig project with no system integrations options ask for shell completions with the prompt `zig build -` rather...

### Zig Version 0.12 ### Steps to Reproduce and Observed Behavior ```zig test { @compileLog(@TypeOf(&(try @as(anyerror!usize, 0)))); @compileLog(@TypeOf(&(@as(anyerror!usize, 0) catch {}))); @compileLog(@TypeOf(&(@as(anyerror!usize, 0) catch |err| return err))); @compileLog(@TypeOf(&(@as(anyerror!usize, 0) catch...

bug
frontend

### Zig Version 0.12 ### Steps to Reproduce and Observed Behavior ```zig const T = extern struct { f: *const fn () void, }; export fn f(_: *const fn ()...

bug

this example CSV fails to parse with the error `MisplacedQuote` ``` "hour", "minute" 3, 17 ``` im not very familiar with CSV, multiple other libraries/online validators accepted this CSV but...

### Zig Version 0.13.0-dev.201+86d8688c7 ### Steps to Reproduce and Observed Behavior reproducible with the project from `zig init`, run `zig build run` more than once without editing any files hits...

bug
zig build system
regression

### Zig Version 0.12.0-dev.3245+4f782d1e8 ### Zig Language Server Version 0.12.0-dev.490+fd3b5af ### Client / Code Editor / Extensions _No response_ ### Steps to Reproduce and Observed Behavior ```zig test { const...

bug

ive seen this trip up people a good few times, see #20245. i dont think the current name makes much sense.

gcc and clang both handle this flag with and without a space so it seems reasonable to replicate that

currently asking for the type definition of a function just goes to the beginning of the functions definition. im not sure what exactly is the general consensus for what this...

enhancement