treemd 0.5.6

A markdown navigator with tree-based structural navigation and syntax highlighting
Documentation
# justfile for treemd - Markdown tree viewer and navigator

# Default recipe - show available commands
default:
    @just --list

# Build the project in debug mode
build:
    cargo build

# Build the project in release mode with optimizations
release:
    cargo build --release

# Run the project with a test file
run FILE="README.md":
    cargo run -- {{FILE}}

# Run the release build with a test file
run-release FILE="README.md":
    ./target/release/treemd {{FILE}}

# Run with the link following test file
run-links:
    cargo run -- test_links.md

# Run all tests
test:
    cargo test

# Run tests with output shown
test-verbose:
    cargo test -- --nocapture

# Check code without building
check:
    cargo check

# Run clippy for linting
lint:
    cargo clippy -- -D warnings

# Format code with rustfmt
fmt:
    cargo fmt

# Check if code is formatted
fmt-check:
    cargo fmt -- --check

# Clean build artifacts
clean:
    cargo clean

# Install the binary to ~/.cargo/bin
install:
    @echo "Installing treemd..."
    cargo install --path . --force
    @echo "✅ Installation complete! Run 'treemd --help' to get started."

# Uninstall the binary
uninstall:
    cargo uninstall treemd

# Update dependencies
update:
    cargo update

# Show outdated dependencies
outdated:
    cargo outdated

# Full CI check: format, lint, test, build
ci: fmt-check lint test release
    @echo "✅ All CI checks passed!"

# Quick test of link following feature
test-links: install
    @echo "Testing link following feature..."
    @echo "1. Opening test_links.md"
    @echo "2. Press 'f' to enter link mode"
    @echo "3. Press 'Tab' to cycle links"
    @echo "4. Press 'Enter' to follow"
    @echo "5. Press 'b' to go back"
    @echo "6. Press '?' to see help"
    @echo ""
    treemd test_links.md

# Watch and rebuild on file changes (requires cargo-watch)
watch:
    cargo watch -x check -x test -x run

# Generate and open documentation
doc:
    cargo doc --open

# Show project statistics
stats:
    @echo "Lines of code:"
    @find src -name "*.rs" -exec wc -l {} + | tail -1
    @echo "\nDependencies:"
    @cargo tree --depth 1

# Create a new release build and show binary size
release-info: release
    @echo "Release binary:"
    @ls -lh target/release/treemd | awk '{print $5, $9}'
    @echo "\nStripped binary size:"
    @strip target/release/treemd
    @ls -lh target/release/treemd | awk '{print $5, $9}'