We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
man fzf
Hi @nkouevda
inspired by your solution in #1496
what I am trying to do is pass a filelist and let fzf search for things in files in that list
Currently have this mapping where i can pass the filelist :LS <filelist> how do i enhance it to grep in the files in the passed list?
:LS <filelist>
command! -bang -complete=file -nargs=1 LS call fzf#run(fzf#wrap('ls_filelist', {'source': 'bat <q-args>'}, <bang>0))
Also bonus would be if i can do :LS -q <<string to search>> <<filelist>>
:LS -q <<string to search>> <<filelist>>
Currently what is do is
bat filelist | xargs \rg <<search>> -l
which is i want to replace achieve in vim ... with interactive fzf search
TIA
The text was updated successfully, but these errors were encountered:
No branches or pull requests
man fzf
)Hi @nkouevda
inspired by your solution in #1496
what I am trying to do is pass a filelist and let fzf search for things in files in that list
Currently have this mapping where i can pass the filelist
:LS <filelist>
how do i enhance it to grep in the files in the passed list?Also bonus would be if i can do
:LS -q <<string to search>> <<filelist>>
Currently what is do is
which is i want to replace achieve in vim ... with interactive fzf search
TIA
The text was updated successfully, but these errors were encountered: