Closed winstonpurnomo closed 6 months ago
Hi
Can you show me the output of which grep
and which ggrep
same issue here
Not the original author but I have the same issue
% which grep
grep: aliased to grep --color=auto
% which ggrep
ggrep not found
Can you show me what is pyggrep
and how do you install it?
I tried googling and the only results were this very github issue https://www.google.com/search?q=%22pyggrep%22
Otherwise you may have to try debug this yourself by adding some set -x
to the script to see where it is going wrong.
Encountered the same issue :
nvim grep: unrecognized option '-- ✔ at 23:54:33 53%
-ftb-build-module
...
vcs_info'
Usage: grep [OPTION]... PATTERNS [FILE]...
Try 'grep --help' for more information.
_fzf_completion_compadd:31: 21: bad file descriptor
I have added set -x
however the output is way ahead of my understanding of zsh unfortunately - output is too big (lot of powerlevel stuff there). I just have grep
, the same way as @d-goncalves aliased to --color=auto
, however I commented out this alias and it did not help.
on the other hand, I realized I have two plugins, this one and https://github.com/Aloxaf/fzf-tab - do they suppouse to be installed one by one or just one of them ? After commenting out this one and leaving just fzf-tab it is working
commenting the other one and leaving this one also works, I guess issue arise when both are active?
Thanks @grzesuav , I installed fzf-tab as well, and that has helped me manage to reproduce the issue.
I believe this commit should fix it https://github.com/lincheney/fzf-tab-completion/commit/5b8122befb172a996b92c692fe7f216de93105a4
The problem stems from fzf-tab defining a function called --
(you can check it by running declare -f -- --
) (https://github.com/Aloxaf/fzf-tab/blob/bf3ef5588af6d3bf7cc60f2ad2c1c95bca216241/fzf-tab.zsh#L405) which is causing issues.
Aside: in general I would recommend not installing/enabling both this repo and https://github.com/Aloxaf/fzf-tab, as they do essentially the same thing.
https://github.com/lincheney/fzf-tab-completion/assets/54757320/0b419c59-8048-45aa-bc5f-6aa9a0fa3c4d
See the screen recording.