Checklist
Output of fzf --version
0.73.1 (ce4bef7)
OS
Shell
Problem / Steps to reproduce
The shell configuration update check still assumes there are only 3 supported shells (bash, zsh, and fish). Since nushell support was added, the condition is outdated.
if [[ ${#shells} -lt 3 ]]; then
echo "No shell configuration to be updated."
exit 0
fi
Proposed Solution
Update the count from 3 to 4
if [[ ${#shells} -lt 4 ]]; then
echo "No shell configuration to be updated."
exit 0
fi
Checklist
man fzf)Output of
fzf --version0.73.1 (ce4bef7)
OS
Shell
Problem / Steps to reproduce
The shell configuration update check still assumes there are only 3 supported shells (
bash,zsh, andfish). Since nushell support was added, the condition is outdated.Proposed Solution
Update the count from 3 to 4