diff options
author | Andrey Borzenkov <bor@users.sourceforge.net> | 2007-08-12 09:04:52 +0000 |
---|---|---|
committer | Andrey Borzenkov <bor@users.sourceforge.net> | 2007-08-12 09:04:52 +0000 |
commit | 649d87c8cb45fdcd1fe39560b04a1dd22c417bbb (patch) | |
tree | b23c4e1d852cc62c566c28767d086b68ddd0a1ed | |
parent | 38a2d37d0e0870ad5b73724d9ea7255f5e3605ee (diff) | |
download | zsh-649d87c8cb45fdcd1fe39560b04a1dd22c417bbb.tar.gz zsh-649d87c8cb45fdcd1fe39560b04a1dd22c417bbb.tar.xz zsh-649d87c8cb45fdcd1fe39560b04a1dd22c417bbb.zip |
23751: complete module files too
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Linux/Command/_modutils | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index e4a3db860..c467050e8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-08-12 Andrey Borzenkov <bor@zsh.org> + + * 23751: Completion/Linux/Command/_modutils: support for + completing module files directly + 2007-08-09 Clint Adams <clint@zsh.org> * Nikolai Weibull: 23749: Completion/Unix/Command/_cdrdao: diff --git a/Completion/Linux/Command/_modutils b/Completion/Linux/Command/_modutils index d8c0e37e8..cc7034f8c 100644 --- a/Completion/Linux/Command/_modutils +++ b/Completion/Linux/Command/_modutils @@ -74,7 +74,11 @@ case "$state" in all_modules) modules=( ${${${${(f)"$(_call_program modules ${(M)words[1]##*/}modprobe -l 2>/dev/null)"}:#}##*/}%%.*} ) - _wanted modules expl module compadd -a modules && return + _tags files modules + while _tags; do + _requested files expl "module file" _files && ret=0 + _requested modules expl module compadd -a modules && ret=0 + done ;; params) |