Compare commits

..

No commits in common. "17cfd6196dba955901d4eaa679d043167f3c027f" and "e89c1cd0bfffa4c1a271d80f1d357ca0a5f25524" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View file

@ -1,6 +1,5 @@
Session.vim
.project.vim
.DS_Store
.ropeproject/
.ccls-cache/
.ropeproject
*~

View file

@ -11,7 +11,7 @@ nnoremap <silent><expr> <CR> empty(&buftype) ? ":write<bar>wall\<CR>" : "\<CR>"
if executable('rg')
let s:rg_cmd = "rg --hidden --follow"
let s:rg_ignore = split(&wildignore, ',') + [
\ 'node_modules', 'target', 'build', 'dist', '.stack-work', '.ccls-cache'
\ 'node_modules', 'target', 'build', 'dist', '.stack-work'
\ ]
let s:rg_cmd .= " --glob '!{'" . shellescape(join(s:rg_ignore, ','), 1) . "'}'"