The [README.md\#completions](https://github.com/sharkdp/fd?tab=readme-ov-file#completions) section for fish shell instructs users to: > fish: Put `fd.fish` in `~/.config/fish/completions` I could not find the `fd.fish` file anywhere in the repository. I was later informed (LLM) that the correct method is to generate the file using the binary itself, like this: ```sh fd --gen-completions=fish # and maybe this actually fd --gen-completions=fish > ~/.config/fish/completions/fd.fish ``` I tried this command, and it successfully generated a working completion file. Could the `README.md` be updated to reflect this correct, modern method? I would be happy to open a PR for this with a go ahead from you.