Implement history, show operations, implement trash

This commit is contained in:
Jeremy Soller 2024-01-30 10:47:41 -07:00
parent 004fd617ea
commit 12a2a39a9f
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
6 changed files with 344 additions and 119 deletions

View file

@ -46,9 +46,17 @@ check *args:
# Runs a clippy check with JSON message format
check-json: (check '--message-format=json')
# Developer target
dev *args:
cargo fmt
cargo test
cargo build --profile release-with-debug
env RUST_LOG=cosmic_files=debug RUST_BACKTRACE=full target/release-with-debug/cosmic-files {{args}}
# Run with debug logs
run *args:
env RUST_LOG=cosmic_files=debug RUST_BACKTRACE=full cargo run --release {{args}}
cargo build --release
env RUST_LOG=cosmic_files=debug RUST_BACKTRACE=full target/release/cosmic-files {{args}}
# Installs files
install: