From 6e68b271561dceeaf4ad752d1d849f53e096ed26 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Wed, 29 Jan 2020 13:59:33 +0100 Subject: [PATCH] Do not include hidden files, as it will include ignored, like Git files --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 6c90015..8ede80f 100644 --- a/.vimrc +++ b/.vimrc @@ -169,7 +169,7 @@ command! -bang -nargs=* Find call fzf#vim#grep('rg --column --line-number --no-h " https://sidneyliebrand.io/blog/how-fzf-and-ripgrep-improved-my-workflow command! -bang -nargs=* Rg \ call fzf#vim#grep( - \ 'rg --column --line-number --hidden --smart-case --no-heading --color=always '.shellescape(), 1, + \ 'rg --column --line-number --smart-case --no-heading --color=always '.shellescape(), 1, \ 0 ? fzf#vim#with_preview({'options': '--delimiter : --nth 4..'}, 'up:60%') \ : fzf#vim#with_preview({'options': '--delimiter : --nth 4..'}, 'right:50%:hidden', '?'), \ 0)