configs  run.fish at [77c2f41ee3]

File config/fish/functions/run.fish artifact 4b306f4755 part of check-in 77c2f41ee3


function run
    if test (count $argv) = 0
        echo "Usage: run command"
        return 1
    end

    $argv &
    disown
end