Fork me on GitHub
#vim
<
2019-10-19
>
dave02:10:36

That looks amazing. I have to try it out!

dave02:10:18

I saw the main author of treesitter give a talk about it at Strange Loop last year. It's a very promising project. I'd be excited to see how it can be integrated into vim

dominicm04:10:15

There's PRs by bredl in various stages of merging

thiru20:10:07

Someone mentioned how with fzf and Rg that searching within files also matches file names and paths. Had anyone found a good way around this? Rg has the --no-filename flag but then you don't know which file the matching text is from...

thiru21:10:24

Here's my current Rg command within vim:

thiru21:10:44

command! -bang -nargs=* Rg \ call fzf#vim#grep( \ 'rg --column --line-number --no-heading --no-filename --smart-case --follow --fixed-strings --ignore-file .fdignore '.shellescape(<q-args>), 1, \ <bang>0 ? fzf#vim#with_preview('up:60%') \ : fzf#vim#with_preview('right:50%:hidden', '?'), \ <bang>0)