Replies: 1 comment 1 reply
-
as a workaround, could you just search for the filename and content, presumably, the string sample code to search for filename and contents can be found here https://github.com/junegunn/fzf/wiki/Examples#searching-file-contents fzf code from screenshot here (i bind this to a keyboard shortcut)
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all, I program in the Elixir programming language. Elixir has a naming convention for modules, which I'll illustrate.
Module name :
Users.Pipelines.ValidateUser.Context
File name :
./lib/users/pipelines/validate_user/context.ex
Now, if I launch
fzf -i
and search forUsers.Pipelines.ValidateUser.Context
, no results are shown.But, if I launch
fzf -i
and search forUsers Pipelines ValidateUser Context
, the following result is (correctly) shown:That's great; at least I know where to go from here. However, I don't know if either of the following is possible:
fzf
to ignore '.' characters or use them as stopwords.Users.Pipelines.ValidateUser.Context
is pasted into thefzf
search, it is re-written toUsers Pipelines ValidateUser Context
.From reading the docs, I don't think either is possible, but perhaps someone with more experience could confirm this for me?
Thanks,
Bryan
Beta Was this translation helpful? Give feedback.
All reactions