-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Exclude folders #128
Comments
When fzf is started w/o STDIN pipe, the default command it uses is |
In my case, fzf does not respect .gitignore. I don't know why. -------------------edit----------------------- Looks like I have to use ag or ack to respect the .*ignore files |
As mentioned here, I solved adding the following in my .bashrc:
|
Yea, but it is manual, if ag can respect .gitignore that would be awesome. |
Ag respects .gitignore when you add that variable. |
The problem I was originally having was that The best solution I've found was to do this:
basically |
@KaoruDev That will open fzf in full screen right? You might want to use call fzf#run(fzf#wrap({'source': 'git ls-files --exclude-standard --others --cached'})) See: https://github.com/junegunn/fzf/blob/master/README-VIM.md#fzfwrap |
yeah it does open in the full screen, kind of gotten used to it, will try what you suggested and see if i like it more, thanks for the tip! @junegunn and |
Best vim solution for me:
|
In node projects it'd be nice to be able to not search in the
node_modules
folder =)The text was updated successfully, but these errors were encountered: