-
-
Notifications
You must be signed in to change notification settings - Fork 339
Can't get fd working with counsel-file-jump #2196
New issue
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
Comments
I can get it working with ripgrep but since All of these isn't working: '("." "--files" "--glob '!.git/'")
'("." "--files" "--glob" "'!.git/'")
'("." "--files" "--glob" "\\'!.git/\\'")
'("." "--files" "--glob" "\"!.git/\"")
'("." "--files" "--glob=\\!.git/") |
Thanks, please test. The "./" issue should be gone now. If there's still something missing, please open a new issue. |
Yes, everything works as expected now |
astoff
pushed a commit
to astoff/swiper
that referenced
this issue
Jan 1, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not related to #1926.
I've set my
find-program
tofd
like this:After that I've set up
counsel-file-jump-args
:And when I use
counsel-file-jump
I get truncated names:those are
.bashrc
,.zshrc
, and.gitconfig
.I've inspected the code and saw that
counsel--find-return-list
truncates the line by 2 characters:swiper/counsel.el
Lines 2611 to 2612 in 20d604c
Assuming that input was
./.bashrc
,./.zshrc
, and./.gitconfig
truncating will result to proper file names. Howeverfd
omits./
in the beginning of the path, which leads to my problem.How should I migrate this?
The text was updated successfully, but these errors were encountered: