configs  run.fish at [f22ec38b1f]

File fish/functions/run.fish artifact 4b306f4755 part of check-in f22ec38b1f


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

    $argv &
    disown
end