vim:ctags: Exclude files in build directory

This commit is contained in:
2021-04-12 16:47:31 +02:00
parent a72eca0bf7
commit b2962a5ce1

View File

@@ -14,5 +14,6 @@ endif
" ctags " ctags
let g:gutentags_ctags_exclude = [ let g:gutentags_ctags_exclude = [
\ 'node_modules/*', \ 'node_modules/*',
\ '.git/*' \ '.git/*',
\ 'build/*'
\] \]