diff options
author | Geoff Lane <geoff@zorched.net> | 2016-12-17 16:32:53 -0500 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-12-17 22:32:53 +0100 |
commit | 1ca2fe63deb0db4870b867c7da7dddc36b15963b (patch) | |
tree | 21031c743f142e4e817a18b0716069c3c149ae3f /plugins/mix | |
parent | 456341fd69c3e514e401f1c3c1726b77d733c86b (diff) | |
download | zsh-1ca2fe63deb0db4870b867c7da7dddc36b15963b.tar.gz zsh-1ca2fe63deb0db4870b867c7da7dddc36b15963b.tar.bz2 zsh-1ca2fe63deb0db4870b867c7da7dddc36b15963b.zip |
Add file completion to `mix run` (#5673)
Diffstat (limited to 'plugins/mix')
-rw-r--r-- | plugins/mix/_mix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mix/_mix b/plugins/mix/_mix index 57fdf808a..cfeb4705e 100644 --- a/plugins/mix/_mix +++ b/plugins/mix/_mix @@ -86,6 +86,9 @@ case $state in (test) _files ;; + (run) + _files + ;; esac ;; esac |