configs  Artifact [4b306f4755]

Artifact 4b306f47553f66d914f67b86b18c1cee9a01497bcbc0ef6db47616076caeed85:

  • File config/fish/functions/run.fish — part of check-in [92789c0ee5] at 2020-02-20 21:16:38 on branch trunk — fish: Add run command to run a command in the bg

    This is more convenient than "command & disown". (user: js size: 130)

  • File fish/functions/run.fish — part of check-in [24d2eb82f0] at 2020-02-20 22:07:34 on branch trunk — Remove useless config subdirectory (user: js size: 130)

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

    $argv &
    disown
end