aboutsummaryrefslogtreecommitdiff
path: root/.vim/after/plugin/fzf.vim
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2023-04-23 01:18:49 +0800
committerGuangxiong Lin <[email protected]>2023-04-23 01:18:49 +0800
commitc013382003a79f276f79f216a01b80b612f895a8 (patch)
tree11cfdfd79c68e94ad3b2bdade3edfd537e231315 /.vim/after/plugin/fzf.vim
parente26190c3f945d7484aef2825bb9a28a721398747 (diff)
downloaddotfiles-c013382003a79f276f79f216a01b80b612f895a8.tar.gz
dotfiles-c013382003a79f276f79f216a01b80b612f895a8.tar.bz2
dotfiles-c013382003a79f276f79f216a01b80b612f895a8.zip
Remove shellescape in fzfrg in vim
Diffstat (limited to '.vim/after/plugin/fzf.vim')
-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>