Files
noil/mise.toml
2025-07-25 23:40:13 +02:00

15 lines
226 B
TOML

[tasks."run:edit"]
run = """#!/usr/bin/env zsh
set -e
tmp=$(mktemp)
cargo run -- --no-color target/ > "$tmp" || return 1
${EDITOR:-hx} "$tmp"
cargo run -- apply < "$tmp"
rm "$tmp"
"""
[tasks.test]
run = "cargo nextest run"