Mvn: Improve plugin prefixes completion (use cached full form plugins too)
This commit is contained in:
parent
e942e9f81b
commit
41401f5f74
3
_mvn
3
_mvn
|
@ -204,7 +204,8 @@ _mvn_plugin_prefixes() {
|
||||||
local cache_dir
|
local cache_dir
|
||||||
zstyle -s ":completion:${curcontext}:" cache-path cache_dir
|
zstyle -s ":completion:${curcontext}:" cache-path cache_dir
|
||||||
: ${cache_dir:=${ZDOTDIR:-$HOME}/.zcompcache}
|
: ${cache_dir:=${ZDOTDIR:-$HOME}/.zcompcache}
|
||||||
plugins+=($cache_dir/mvn/plugins/[^:]#(:t))
|
local cached_plugins; cached_plugins=($cache_dir/mvn/plugins/*(:t))
|
||||||
|
plugins+=(${${${cached_plugins#*:}%-plugin*}/-#maven-#})
|
||||||
fi
|
fi
|
||||||
_describe -t 'plugin-prefixes' 'plugin prefix' plugins -S ':'
|
_describe -t 'plugin-prefixes' 'plugin prefix' plugins -S ':'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue