-
I had a custom command named as I am currently not familiar with bash, I appreciate any correction :) nsp() {
nix-store -q --outputs "$(type -fP "$1")"
}
_fzf_complete_nsp() {
_fzf_complete -- "$@" < <(
compgen -c
)
} |
Beta Was this translation helpful? Give feedback.
Answered by
sharpchen
Apr 24, 2025
Replies: 1 comment
-
It seems I have to register it complete -F _fzf_complete_nsp nsp |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sharpchen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seems I have to register it
complete -F _fzf_complete_nsp nsp