devloop 0.1.3

A tool to help with repetitive commands during development.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
tasks: # Will be re-ran every time you press Enter
    - ["Clippy", "cargo clippy -q"]

reminders: "Don't forget to format!" # Printed at the end

actions: # Q to Quit
    f: ["Format", "cargo fmt"]
    t: ["Test", "cargo test -q -- -q"]
    b: ["Benchmark", "cargo bench -q -- -q; read"]
    r: ["Build release", "cargo build --release"]
    u: ["Run", "te 'cargo run'"]
    c: ["Clean", "cargo clean"]

# vim:ft=yaml: