bacon icon indicating copy to clipboard operation
bacon copied to clipboard

background rust code check

Results 44 bacon issues
Sort by recently updated
recently updated
newest added

```Rust fn main() { println!("Hello world!"); } ``` ``` playground run pass! Compiling playground v0.1.0 (/tmp/playground) Finished dev [unoptimized + debuginfo] target(s) in 0.18s Running `target/debug/playground` Hello world! ``` ```Rust...

I usually use `nvim $(bacon --prefs)` to configure bacon. I just found out that `bacon` needs to be run in a rust project. This makes sense I guess for most...

I'm using Bacon 2.0.0 on Windows. If I run `bacon check` or `bacon clippy` and the program has errors, everything works as intended (even tho the shortcuts for wrapping lines...

bug
windows

I've tried: shift-space = "scroll-pages (-1)" Shift-Space = "scroll-pages (-1)" shift-Space = "scroll-pages (-1)" Shift-space = "scroll-pages (-1)" It appears in the help (?) menu, but it does not work.

First, thanks for `bacon`, I have been trying it out today and its very cool ! `bacon --prefs` always puts its config file the default path for macOS and in...

This is my second attempt at fixing #78. At first, I thought it would be enough to just call `Child::kill` upon receiving the stop signal in the executor (https://github.com/nolanderc/bacon/commit/07ab3184e2f870d75d36b26380375c0510409539). However,...

Currently, if the running job gets stuck in an infinite loop bacon becomes unresponsive. This is easily reproduced by running `bacon test` in a project containing the following: ```rust #[test]...

Some parts of bacon were designed for Rust and are tied to cargo: * default bacon.toml file * compiler output parsing * test output parsing * documentation * the use...

enhancement

Bacon doesn't react to changed files on Windows. (in my short tests using a VM)

windows

I find that `bacon` does not re-run checks when modifying a file under `src/`. Adding `watch = ["src"]` to the job does not help. If I restart `bacon` the tests...