Skip to main content

Questions tagged [fzf]

Use for questions specific to the command-line fuzzy finder, fzf : https://github.com/junegunn/fzf

7 votes
3 answers
864 views

I want to fzf through all the pdf files in a directory, open it and release the terminal. I tried PDF_READER=okular # or evince find -type f -name "*.pdf" -print | fzf --print0 | xargs -0 $...
glacier's user avatar
  • 491
1 vote
1 answer
83 views

I sourced the /usr/share/doc/fzf/examples/key-bindings.bash file so fzf works in Bash; but how do you get that to work with the rlwrap ed approach?
mbigras's user avatar
  • 3,502
1 vote
1 answer
659 views

Is it somehow possible to tweak Readline in a way that always uses an interactive fuzzy finder (fzf) for making selections in Bash completions? From the GNU Bash documentation, I understand that ...
glades's user avatar
  • 126
1 vote
1 answer
99 views

I want to allow the leading program(s) to operate in a standard manner and detach from the terminal once a graphical application launches. In this example fzf reads paths from a file, feeds the ...
user598527's user avatar
0 votes
1 answer
125 views

The following command works fine as expected: find ~ -type f | fzf -m --preview-window=up:30% --header "ctrl-f: selected all and exit" --bind "enter:execute(less {})" --bind "...
canupseq's user avatar
  • 1,994
0 votes
0 answers
286 views

I have A question regarding the menu in shell scripting. I created a menu in shell scripting. however, in one of the options, I have a list the user can select from but the list is big, so I want the ...
sun moon's user avatar
0 votes
1 answer
650 views

Is it possible access/copy the contents of the preview window of fzf? For example this code creates a list consisting of the top ten lines of a few selected files: find -type f | fzf --multi --preview=...
canupseq's user avatar
  • 1,994
4 votes
0 answers
363 views

Say I would like to edit a file ./long/path/to/my/file/test.py with Vim, but I do not remember the path to the file. In this case, I would run vim `fzf` to use fuzzy search to find and edit the file. ...
Matt's user avatar
  • 181

15 30 50 per page