junegunn / fzf

:cherry_blossom: A command-line fuzzy finder
https://junegunn.github.io/fzf/
MIT License
65.73k stars 2.41k forks source link

vim plugin: support nushell #4066

Open Jasha10 opened 3 weeks ago

Jasha10 commented 3 weeks ago

Checklist

Output of fzf --version

0.56.0 (brew)

OS

Shell

Problem / Steps to reproduce

I am using nushell, which is not working properly with the fzf vim plugin.

Specifically, the vim systemlist call fzf --version --no-height in is this file is giving an error because the fzf command is passed to shellescape before being passed into systemlist.

Setup:

I have $SHELL == 'User/jasha/.cargo/bin/nu and have set 'shell' and 'shellxquote' to appropriate values.

Jasha10 commented 3 weeks ago

I've created PR #4067 to address this issue.