-
Below is the command I am trying to run (in windows). When I add the + char I get "unknown action: %b)". I tried using \ and ^ as escape characters and got the same result. Is there a way to escape the +? rg --hidden -i --vimgrep "Test" | fzf --bind="enter:execute(for /f "tokens=1,2 delims=:" %a in ({}) do nvim %a +%b) |
Beta Was this translation helpful? Give feedback.
Answered by
junegunn
Dec 15, 2021
Replies: 1 comment 3 replies
-
Have you tried using |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
e82eric
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Have you tried using
enter:execute:...
form instead ofenter:execute(...)
?