About 16,400,000 results
Open links in new tab
  1. How to get fzf.vim ignore node_modules and .git folders?

    For a completely generalised solution which affects the files returned by fzf both inside and outside Vim , see the "Respecting .gitignore section of the fzf README.

  2. A Practical Guide to fzf: Shell Integration : r/commandline - Reddit

    Feb 28, 2023 · Hello everybody! I just published a second article in my series about fzf, diving this time into fzf's integration with the shell (Bash or Zsh), and how to customize both keybindings and …

  3. A Practical Guide to fzf: Vim Integration : r/vim - Reddit

    Nov 28, 2023 · Here's a TLDR: There are two plugins allowing us to use fzf in Vim: the native fzf plugin directly installed with fzf, and fzf.vim. The second plugin is built on the first one. The plugin fzf.vim …

  4. How to use fzf to search for directories only? - Stack Overflow

    Jan 18, 2022 · Here is a use case: I use fzf to search for a list of directories, which then used with the cd command: cd $(fzf) However, the fzf command only displays files, not directories. Is there a way to

  5. Get output from fzf in the terminal without executing it

    Jul 6, 2017 · 3 fzf comes ready to install closely related functionality in fzf's key-bindings.bash mentioned by @sudavid4. The __fzf_history__ function searches bash history interactively using fzf.

  6. bash - How to start fzf from a different directory than the current ...

    Feb 26, 2021 · I often use fzf to navigate the filesystem, especially the Alt-c key binding. When invoked, fzf generates a list from the current working directory. Is it possible to make fzf generate a list from a

  7. Is it possible to use fzf (command line fuzzy finder) with windows 10 ...

    May 21, 2020 · I downloaded the .exe file and placed it into my PATH variable. fzf seems to work in command prompt. But I would like to use it in git-bash. When i use fzf in git-bash it seems to start but …

  8. How do I fuzzy find all files containing specific text using ripgrep ...

    May 12, 2020 · I have the following command to fuzzy find files in the command line and to open the selected file in VSCode.: fzf --print0 -e | xargs -0 -r code Now I want to be able to search also file …

  9. How to use rga (ripgrep-all) with fzf for searching the pdf file and ...

    Nov 3, 2023 · How to using rga (ripgrep-all) with fzf for searching the pdf file and then using sioyek to open that file with its page number? Like this nvim script with rg : #!/usr/bin/env bash # 1.

  10. Use bash alias: fzf to find files, open file in neovim or exit if no ...

    Oct 30, 2024 · I want to make an alias that uses fzf to find a file in my directory, preview it, and then open it in neovim. If I don't select a file and exit the fzf interface, do not open neovim, but exit back to …