Fork me on GitHub
#vim
<
2017-01-24
>
reborg13:01:09

what are you guys using these days for fuzzy search/matching open files and other stuff?

dominicm13:01:16

I use denite primarily waiting for a few features to make it upstream.

dominicm13:01:33

vim-fzf just got 24-bit colour support, which puts it back on my radar as interesting again.

dominicm13:01:01

I think denite will feel more integrated, but I hear fzf is REALLY fast.

dominicm13:01:20

Denite now feels instant where unite didn't before.

reborg13:01:29

I have fzf, but not sure it integrates with the venerable FuzzyFinder that I’m still using after 10+ vim usage...

mikepjb14:01:22

however there are some problems using it with nvim - half the reason I still use vim frankly

mikepjb14:01:52

does anyone have a decent asynchronous solution for evaluating clojure code in vim?

dominicm15:01:34

@reborg fzf.vim is a replacement for FuzzyFinder I think. Ctrl-P is pretty good these days too, but not async I think.

dominicm15:01:24

@mikepjb RE async eval, @ingvij has https://github.com/clojure-vim/acid.nvim which is increasingly more stable, and I believe that @zamaterian has something in his .files which sends stuff to a neovim-managed REPL too. Actually, @ingvij's other plugin https://github.com/hkupty/iron.nvim does that too!

mikepjb15:01:14

thanks @dominicm do you use acid.nvim frequently now? do you still use fireplace?

dominicm15:01:47

Haven't made the switch yet, we're having a tooling day on Friday, so it will likely be a day to catch up on such things!

mikepjb15:01:32

ah yes I’ve heard about the arch migrators! sounds exciting 🙂

dominicm16:01:55

Yes! Although I'm losing love for Arch because of systemd, http://www.voidlinux.eu/ is the future I want to see 😄

juhoteperi16:01:53

Fuzzy search in buffer or project file names? CtrlP

juhoteperi16:01:16

I don't know if it is async, but it doesn't matter, it is fast enough when using git ls-files for listing project files

dominicm16:01:30

@juhoteperi I find the slowness comes on big projects when grepping more than anything else.

juhoteperi16:01:42

file contents?

juhoteperi16:01:30

I use vim-grepper with git grep or ag

dominicm16:01:37

ah, I've considered doing that.

dominicm17:01:18

Something else for tooling day?

dominicm17:01:49

ah, I remember my resistance to vim-grepper now, it was mostly superficial: I wanted a single interface to things, and I couldn't get that doing it this way.

mynomoto19:01:52

I use vim-ack with rg as backend, it's pretty fast.

dominicm19:01:31

I like ripgrep, it's pretty great. I had ack segfaulting, rg has been really stable