fzf Questions

4

Solved

I have been dealing with this problem for almost a month now, and I feel frustrated, Any help would be greatly appreciated. I am trying to write a widget for my takenote command. The purpose of th...
Olia asked 2/1, 2018 at 4:30

8

I have fzf setup in vim with barely any customisation: " fzf and ripgrep settings set rtp+=/usr/local/opt/fzf let g:fzf_action = { \ 'ctrl-t': 'tab split', \ 'ctrl-i': 'split', \ 'ctrl-s': 'vsp...
Philologian asked 18/5, 2020 at 8:58

5

Solved

I'd like to use FZF to search for files and then have them open in an editor of my choice e.g. Sublime, Atom. I'm not sure how to configure my shell for this, I've tried the below but I can't get i...
Salinometer asked 31/1, 2017 at 17:19

7

fzf rocks! I want to use it to search bash history. When a match is found, I want it to be placed on the command line, but not executed so I can edit it further. (All of this is in a sourced bash f...
Contingency asked 6/7, 2017 at 6:33

5

Solved

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 ...
Bibcock asked 26/2, 2021 at 9:10

2

Solved

I have defined a function to search for filename (<C-P>), and a string (<C-F>) from git root directory asynchronously with fzf.vim plugin (I also have Ag installed). However, I can not ...
Concurrence asked 29/6, 2018 at 1:23

3

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 nothing...
Kailey asked 21/5, 2020 at 21:1

2

I am trying to use fzf in the following manner, I would like to be able to search for a term within my codebase and then with the preview window be able to see the file which contains the string I ...
Falsity asked 15/3, 2019 at 16:20

5

I've been using oh-my-zsh for a while and it's working great. I'd like to use the command-line fuzzy finder plugin so I enabled it in .zshrc: plugins=(fzf) However if "fzf" is not installed I ge...
Dartboard asked 24/9, 2018 at 13:53

0

I'm using fzf Ctrl+R binding to navigate the command line history. Now first Enter keypress selects the command, and the second one executes it. Is it possible to configure fzf to perform both of t...
Osber asked 29/9, 2022 at 8:48

1

Solved

I would like to implement a vim command to select buffers with the following behaviour: When called, it present the user with a list of loaded buffers and other recently used buffers from the curr...
Spellbind asked 17/12, 2020 at 5:49

6

I recently found this command line tool called fzf. I installed it according to the instructions and it does work, except for the CTRL-T key binding. Even though, I installed the special stuff with...
Doss asked 10/3, 2018 at 9:16

2

Solved

i'm running neovim 0.5 with fzf-vim on windows 10 and can't seem to make preview to work. my init.vim per below: call plug#begin('~/AppData/Local/nvim/plugged') Plug 'junegunn/fzf', { 'do': { -&g...
Proud asked 19/4, 2021 at 11:37

2

Solved

I want to use the fzf fuzzyfinder command history instead of the typical command history when I press the up arrow. In my fzf shell keybindings file I'm able to edit which key brings up the fuzzy ...
Sell asked 5/9, 2019 at 19:33

3

Solved

I use fzf.vim to quickly find files in my projects in neovim. Sometimes either because I can't find what I'm looking for or because I forgot to do something before open the new file, I need to canc...
Brocket asked 28/2, 2021 at 23:29

0

It is possible to configure fzf in vim insert mode to do code completion? The tags are generated and setup to work with vim. In vim omni completion is working well. But omni completion doesn't have...
Procreant asked 3/1, 2021 at 6:21

1

Solved

I have alias vif='vim $(fzf) in my ~/.zprofile and it works great; however, it always opens vim window even if I click esc button because I didn't find the file I was looking for. How do I get it t...
Prepositive asked 19/12, 2020 at 3:43

2

When I use :Files in fzf.vim, it searches for the files in the current directory and the subdirectories. The current working directory is fixed. In the screenshot below, it is in light blue. Is the...
Silica asked 29/11, 2019 at 22:52

2

I use a convenience package fzf.vim to integrate fzf with vim. The file search works perfect and has completely replaced CtrlP plugin, but the functionality to grep files has unfortunate side-effec...
Espino asked 23/1, 2020 at 18:49

2

Solved

I found git examples with fzf(fuzzy finder) and they does work great. like: # fbr - checkout git branch fbr() { local branches branch branches=$(git branch -vv) && branch=$(echo "$bran...
Karttikeya asked 9/4, 2016 at 6:0

1

Solved

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 conten...
Modiolus asked 11/5, 2020 at 23:3

3

Solved

I am new to vim. I read online that one of the best fuzzy finder in vim is fzf. I have started using it. But whenever I write the command :Ag I get ag is not found. I don't know what it means and I...
Arielariela asked 1/3, 2018 at 15:0

1

Solved

I use fzf.vim a lot in my work, though don't know how to exclude incorrect lines from search results. Here is an example of the problem I have. I need to find every model.search_views occurrence, ...
Lastditch asked 17/9, 2018 at 9:52

3

Solved

I have a problem with finding a proper solution for most recently used files with the FZF Vim plugin. This plugin should have features like: show files opened in current vim session(like buffers) ...
Sub asked 28/7, 2015 at 14:50

2

Solved

I've written the following which allows me to switch tmux window with fzf: tmux list-windows -F "#I:#W" | fzf-tmux | cut -d ":" -f 1 | xargs tmux select-window -t When I run this in a shell it w...
Jennifferjennilee asked 9/6, 2016 at 16:0

© 2022 - 2025 — McMap. All rights reserved.