[windows] fzf integration sample from readme does not work #2095
Open
Description
Hi,
On windows the fzf integration sample does not work out of the box.
Line 121 in 7be9485
❯ fzf --preview 'bat --color=always --style=numbers --line-range=:500 {}'
invalid color specification: always
You have to use "
instead of '
:
❯ fzf --preview "bat --color=always --style=numbers --line-range=:500 {}"
Maybe you can leave a note for windows users.