aboutsummaryrefslogtreecommitdiff
path: root/.vim/after
diff options
context:
space:
mode:
Diffstat (limited to '.vim/after')
-rw-r--r--.vim/after/plugin/fzf.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/.vim/after/plugin/fzf.vim b/.vim/after/plugin/fzf.vim
index 3c7d03d..df1ef6d 100644
--- a/.vim/after/plugin/fzf.vim
+++ b/.vim/after/plugin/fzf.vim
@@ -39,7 +39,7 @@ if executable('fzf') && get(g:, 'loaded_fzf', 0) == 1
command! -bang -nargs=* FzfRg
\ call fzf#vim#grep(
- \ 'rg --hidden --column --line-number --no-heading --color=always --smart-case --glob !.git '.shellescape(<q-args>), 1,
+ \ 'rg --hidden --column --line-number --no-heading --color=always --smart-case --glob !.git ' . <q-args>, 1,
\ fzf#vim#with_preview(), <bang>0)
noremap <leader>ff :FzfFiles<CR>