I have an little shell script (named "run") which redirects all output of a program to /dev/null:
#!/bin/bash
$@ &> /dev/null &
disown +
How can I say zsh that the whole autocompletion shall work for this?
I mean
$ run git com<TAB>
autocomplete to
$ run git commit