1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 23:40:39 +01:00

feat(mix): add file patterns for mix test and mix run

This commit is contained in:
antedeguemon
2022-06-27 16:24:43 -04:00
parent 4c82a2eedf
commit 2610135df9

View File

@@ -146,10 +146,10 @@ case $state in
_arguments ':feature:__task_list' _arguments ':feature:__task_list'
;; ;;
(test) (test)
_files _path_files -X "All tests" -g "test/**/*_test.exs" -g "apps/*/test/**/*_test.exs"
;; ;;
(run) (run)
_files _files -g "*.(exs|ex)"
;; ;;
esac esac
;; ;;