mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
7 lines
184 B
Bash
7 lines
184 B
Bash
function _complete_nix {
|
|
while IFS= read -r line; do
|
|
COMPREPLY+=("$line")
|
|
done < <(NIX_GET_COMPLETIONS=$COMP_CWORD "${COMP_WORDS[@]}")
|
|
}
|
|
|
|
complete -F _complete_nix nix
|