Welcome to Vifm Q&A, where you can ask questions about Vifm usage. Registration is optional, anonymous posts are moderated. GitHub or Google logins are enabled.
0 votes
in vifm by

im using the FZFfind command found on the wiki:
https://wiki.vifm.info/index.php/How_to_integrate_fzf_for_fuzzy_finding

however it have problems in some directories like /usr, this is the error i get:
https://pastebin.com/vqL9SgnC

1 Answer

+1 vote
by

Try this variant (adds 2>/dev/null to find command):

command! FZFfind :set noquickview | :execute 'goto' fnameescape(term('find 2>/dev/null | fzf --height 10 2>/dev/tty'))
...