etc: completion: Filter gratuitous spaces from available packages.
Tested with: guix environment --{ad-hoc,pure} zsh guix bash-completion coreutils -- zsh % fpath=(~/guix/etc/completion/zsh $fpath) % autoload -U compinit; compinit * etc/completion/zsh/_guix (_guix_list_available_packages): Remove spaces. Co-authored-by: Tobias Geerinckx-Rice <me@tobias.gr>master
parent
2ab53a68fd
commit
55f6d9e818
|
@ -58,6 +58,7 @@ _guix_list_available_packages()
|
||||||
if ( [[ ${+_guix_available_packages} -eq 0 ]] || _cache_invalid GUIX_AVAILABLE_PACKAGES ) \
|
if ( [[ ${+_guix_available_packages} -eq 0 ]] || _cache_invalid GUIX_AVAILABLE_PACKAGES ) \
|
||||||
&& ! _retrieve_cache GUIX_AVAILABLE_PACKAGES; then
|
&& ! _retrieve_cache GUIX_AVAILABLE_PACKAGES; then
|
||||||
_guix_available_packages=(${${(f)"$(guix package -A | cut -f1)"}})
|
_guix_available_packages=(${${(f)"$(guix package -A | cut -f1)"}})
|
||||||
|
_guix_available_packages=("${_guix_available_packages[@]// /}")
|
||||||
_store_cache GUIX_AVAILABLE_PACKAGES _guix_available_packages
|
_store_cache GUIX_AVAILABLE_PACKAGES _guix_available_packages
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue