Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.34 KB

README-Win.md

File metadata and controls

29 lines (20 loc) · 1.34 KB

NOTE: RECOMMENDED FZF VERSION >= 0.52.1

To avoid issues with live_grep|live_grep_native and special characters upgrade your fzf binary at the minimum to version 0.52.1

Windows Known Issues and Limitations

As fzf-lua is bound by the same constraints, please read fzf's Windows Wiki page.

It took a lot of work to make everything work exactly as it does on *NIX/OSX. Fzf-lua attempts to overcome inherent fzf Windows woes (escaping, etc) by using our command proxy wrapper and working around the issues using lua code.

Single quotes in commands / options

On Windows, single quotes ' in command arguments are treated as a string literal, that means that wrapping arguments with single quotes does not translate into a single string the same way a double quoted argument is treated, i.e. 'foo bar' != "foo bar".

To avoid issues, make sure none of your cmd's rg_opts, fd_opts, preview, etc contains single hyphens that should be treated as quotes, this is probably the case if you copied old fzf-lua defaults into your setup options.