aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler/fmt.zig
AgeCommit message (Collapse)Author
2024-11-12compiler: un-jit `zig fmt`mlugg
This command being JITed leads to a substantially worse first-time user experience, since you have to wait for upwards of 20 seconds for `fmt.zig` to build. This is especially bad when your editor is configured to run `zig fmt` on save and does so in a blocking manner. As such, it makes sense from a usability perspective to not JIT this particular command.
2024-11-11Fix silent zig fmt errors (#21948)Daniel Hooper
2024-10-03std.posix: Added error message 'ProcessNotFound' for reading and writing in ↵Chris Boesch
a Linux process (#21430) * Added error message 'ProcessNotFound' for reading and writing in a Linux process. This error occurs if the process to be read from or written to no longer exists. Fixes #19875 * Added error message "ProcessNotFound" for error forwarding. * Add error messgae for forwarding. * Added message for forwarding. * Error set completed. * Fixed format error. * Changed comments to doc comments.
2024-08-08std.posix: read on timerfd can return error.CanceledJan Hendrik Farr
2024-05-29zig fmt: ignore hidden files and directoriesAndrew Kelley
rather than ignoring specifically "zig-cache" and "zig-out". The latter is not necessarily the install prefix and should not be special. The former will be handled by renaming zig-cache to .zig-cache.
2024-02-26move lazily compiled source files to lib/compiler/Andrew Kelley