forked from lix-project/lix
25 lines
540 B
Bash
25 lines
540 B
Bash
#compdef nix
|
|
|
|
function _nix() {
|
|
local ifs_bk="$IFS"
|
|
local input=("${(Q)words[@]}")
|
|
IFS=$'\n'
|
|
local res=($(NIX_GET_COMPLETIONS=$((CURRENT - 1)) "$input[@]" 2>/dev/null))
|
|
IFS="$ifs_bk"
|
|
local tpe="${${res[1]}%%> *}"
|
|
local -a suggestions
|
|
declare -a suggestions
|
|
for suggestion in ${res:1}; do
|
|
suggestions+=("${suggestion%% *}")
|
|
done
|
|
local -a args
|
|
if [[ "$tpe" == filenames ]]; then
|
|
args+=('-f')
|
|
elif [[ "$tpe" == attrs ]]; then
|
|
args+=('-S' '')
|
|
fi
|
|
compadd -J nix "${args[@]}" -a suggestions
|
|
}
|
|
|
|
_nix "$@"
|