Fork me on GitHub
#vim
<
2017-01-26
>
dominicm12:01:20

Just used denite on a large codebase with a broad search, as I wasn't exactly sure what I was after & it choked with the 21197 results it got. Very slow vim after that. vim-fzf might be on my list with the latest release.

dominicm13:01:32

Something I can't see how to do with vim-fzf, how do I select a list of buffers to delete? Seems like fzf is focused on switching/opening.

hkupty14:01:04

For deleting buffers I still do map <leader>; :ls<CR>:bd<space> since this is not completely solved by vim-fzf

hkupty14:01:51

It seems that vim-fzf is just a wrapper for opening a term that runs fzf and does the right thing with the returned File Name/Buffer/Path/wharever

dominicm14:01:39

yeah. I've seen that :ls trick