Ignore build directory when generating ctags

This commit is contained in:
Michael Campagnaro 2024-09-18 15:25:50 -04:00
parent 3d5b394e23
commit 76f24a700c

2
.vimrc
View File

@ -165,7 +165,7 @@ let g:campo_extensions_that_run_ctags = ['c','cpp','h','hpp','inc','cs','py','as
" recursive crawl.
" @note The CreateCtags function will always ignore .git and node_modules
" regardless of this variable's value.
let g:campo_ctags_exclude = ['*.txt', '*.config', '.cache', 'run_tree']
let g:campo_ctags_exclude = ['*.txt', '*.config', '.cache', 'run_tree', 'build']
" This is included in the ctags autocmd args. You can use this to customize
" how ctags are built.