Replies: 1 comment
-
There are couple of related issue reports:
This seems to work: docker run --workdir=/root --interactive --tty --rm -e FZF_VERSION=0.46.1 ubuntu:24.10 sh -c '
apt-get update && apt-get install -y curl fzf;
curl -o /usr/share/doc/fzf/examples/completion.bash https://raw.githubusercontent.com/junegunn/fzf/refs/tags/${FZF_VERSION}/shell/completion.bash
curl -o /usr/share/doc/fzf/examples/key-bindings.bash https://raw.githubusercontent.com/junegunn/fzf/refs/tags/${FZF_VERSION}/shell/key-bindings.bash
echo ". /usr/share/doc/fzf/examples/completion.bash" >> ~/.bashrc
echo ". /usr/share/doc/fzf/examples/key-bindings.bash" >> ~/.bashrc
/bin/bash'
no, up to the maintainers of the package. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using Ubuntu 24.10, and the latest fzf version I can get is version 0.46.1 (debian).
I read that you need version 0.48 and above to use eval "$(fzf --bash)" in you .bashrc file.
What would I put instead of eval "$(fzf --bash)" with my older version?
Any idea when a newer version for Ubuntu/debian systems will be out?
Beta Was this translation helpful? Give feedback.
All reactions