2020-05-10 18:32:21 +00:00
|
|
|
function _complete_nix {
|
2020-05-11 19:37:53 +00:00
|
|
|
local -a words
|
|
|
|
local cword cur
|
|
|
|
_get_comp_words_by_ref -n ':=&' words cword cur
|
2020-05-10 19:35:07 +00:00
|
|
|
local have_type
|
2020-05-10 18:32:21 +00:00
|
|
|
while IFS= read -r line; do
|
2020-10-09 07:39:51 +00:00
|
|
|
local completion=${line%% *}
|
2020-05-10 19:35:07 +00:00
|
|
|
if [[ -z $have_type ]]; then
|
|
|
|
have_type=1
|
2021-12-22 11:37:59 +00:00
|
|
|
if [[ $completion == filenames ]]; then
|
2020-05-10 19:35:07 +00:00
|
|
|
compopt -o filenames
|
2021-12-22 11:37:59 +00:00
|
|
|
elif [[ $completion == attrs ]]; then
|
|
|
|
compopt -o nospace
|
2020-05-10 19:35:07 +00:00
|
|
|
fi
|
|
|
|
else
|
2020-10-09 07:39:51 +00:00
|
|
|
COMPREPLY+=("$completion")
|
2020-05-10 19:35:07 +00:00
|
|
|
fi
|
2022-02-04 21:43:16 +00:00
|
|
|
done < <(NIX_GET_COMPLETIONS=$cword "${words[@]/#\~/$HOME}" 2>/dev/null)
|
2020-05-11 19:37:53 +00:00
|
|
|
__ltrim_colon_completions "$cur"
|
2020-05-10 18:32:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
complete -F _complete_nix nix
|