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
Describe the bug Error when execute your sample "search.bat"
To Reproduce
Sample search.bat your site
@echo off setlocal
set RG_PREFIX=rga --files-with-matches set FZF_DEFAULT_COMMAND=%RG_PREFIX% %1 for /f "delims=" %%i in ('fzf --sort --preview "rga --pretty --context 5 {q} {}" --phony -q %1 --bind "change:reload:%RG_PREFIX% {q}" --preview-window="70%:wrap"') do ( set FILE=%%i )
if not "%FILE%" == "" ( echo Opening %FILE% start "" "%FILE%" ) else ( echo No file selected. )
endlocal
Output When execute search.bat: unknown option: change:reload:rga --files-with-matches {q}
Operating System and Version Windows
Output of rga --version ripgrep-all 0.10.6
rga --version
The text was updated successfully, but these errors were encountered:
What version of fzf are you using? fzf --version should print this.
fzf
fzf --version
Sorry, something went wrong.
Hello, fzf --version:
0.56.3 (add1aec)
No branches or pull requests
Describe the bug
Error when execute your sample "search.bat"
To Reproduce
Sample search.bat your site
@echo off
setlocal
set RG_PREFIX=rga --files-with-matches
set FZF_DEFAULT_COMMAND=%RG_PREFIX% %1
for /f "delims=" %%i in ('fzf --sort --preview "rga --pretty --context 5 {q} {}" --phony -q %1 --bind "change:reload:%RG_PREFIX% {q}" --preview-window="70%:wrap"') do (
set FILE=%%i
)
if not "%FILE%" == "" (
echo Opening %FILE%
start "" "%FILE%"
) else (
echo No file selected.
)
endlocal
Output
When execute search.bat:
unknown option: change:reload:rga --files-with-matches {q}
Operating System and Version
Windows
Output of
rga --version
ripgrep-all 0.10.6
The text was updated successfully, but these errors were encountered: