logoalt Hacker News

mayliyesterday at 9:55 PM1 replyview on HN

you are welcome

    cat ~/.local/bin/uve
    #!/bin/bash
    temp=$(mktemp)
    uv export --script $1 --no-hashes > $temp
    uv run --with-requirements $temp vim $1
    unlink $temp

Replies

nomelyesterday at 10:06 PM

This is rather silly.