10 lines
162 B
Bash
10 lines
162 B
Bash
#compdef autosource
|
|
|
|
_autosource() {
|
|
_alternative \
|
|
'plugin:filename:{_path_files -W spath}'
|
|
}
|
|
|
|
_autosource
|
|
|
|
# vim: ft=zsh expandtab tabstop=2 shiftwidth=2
|