mirror of
https://github.com/sharkdp/fd.git
synced 2026-06-09 15:37:26 +02:00
247a5172e5
Closes #1888
9 lines
299 B
Bash
9 lines
299 B
Bash
# Source fd completions
|
|
source /usr/share/bash-completion/completions/fd
|
|
|
|
if [[ "${BASH_VERSINFO[0]}" -eq 4 && "${BASH_VERSINFO[1]}" -ge 4 || "${BASH_VERSINFO[0]}" -gt 4 ]]; then
|
|
complete -F _fd -o nosort -o bashdefault -o default fdfind
|
|
else
|
|
complete -F _fd -o bashdefault -o default fdfind
|
|
fi
|