Closed frbor closed 6 years ago
I failed to use open/preview with fzf with Fish shell version 2.4.0, because argparse was used, which was not introduced until Fish version 2.7.
argparse
I managed to create a fallback version using contains, which works for me, so I hope you will consider this PR.
contains,
This looks like a fine fallback approach. There's another file with usage of argparse, __fzf_cd.fish. Perhaps you could update that too?
__fzf_cd.fish
Sure! I have updated __fzf__cd.fish as well.
__fzf__cd.fish
Thanks!
I failed to use open/preview with fzf with Fish shell version 2.4.0, because
argparse
was used, which was not introduced until Fish version 2.7.I managed to create a fallback version using
contains,
which works for me, so I hope you will consider this PR.