You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This isn't quite a bug, but an uncommon use-case I think. I work on systems with different architectures (aarch64 and x86_64) that mount a shared filesystem for their home directories. The current install process for fzf is architecture-independent from what I can find, so fzf works only on the system that it was installed on, while it breaks on the other system due to the incompatible binaries being used.
I use vim-plug to manage my vim plugins, and I'm new to vimscript, so I don't know how to tell vim-plug to install to an architecture-dependent location. My workaround has been to remove fzf from my vim plugins and just manually clone/install it to arch-dependent directories and alter the .fzf.bash script to use the output of uname -m to determine which directory to source.
To Reproduce:
Have access to 2+ systems with different architectures (aka x86_64 and aarch64) that mount a shared filesystem for their $HOME directory
Login to one of the systems
git clone fzf to ~/.fzf and cd to ~/.fzf
./install -y
Logout of that system and into the other one
Source your .bashrc if it hasn't been done already
Checklist
man fzf
)Output of
fzf --version
0.58.0 (65db735)
OS
Shell
Problem / Steps to reproduce
This isn't quite a bug, but an uncommon use-case I think. I work on systems with different architectures (aarch64 and x86_64) that mount a shared filesystem for their home directories. The current install process for fzf is architecture-independent from what I can find, so fzf works only on the system that it was installed on, while it breaks on the other system due to the incompatible binaries being used.
I use vim-plug to manage my vim plugins, and I'm new to vimscript, so I don't know how to tell vim-plug to install to an architecture-dependent location. My workaround has been to remove fzf from my vim plugins and just manually clone/install it to arch-dependent directories and alter the
.fzf.bash
script to use the output ofuname -m
to determine which directory to source.To Reproduce:
$HOME
directory~/.fzf
and cd to~/.fzf
./install -y
.bashrc
if it hasn't been done alreadybash: /users/$USER/.fzf/bin/fzf: cannot execute binary file: Exec format error
The text was updated successfully, but these errors were encountered: