From 986bde34cb9e4132f60557b4800eefff832c6480 Mon Sep 17 00:00:00 2001 From: Michael Campagnaro Date: Mon, 4 May 2020 13:35:36 -0400 Subject: [PATCH] Add more directories to ctags ignore list --- vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vimrc b/vimrc index 4859780..33ca282 100644 --- a/vimrc +++ b/vimrc @@ -326,7 +326,7 @@ augroup campoCmds " The ampersand at the end is to make this run in the background. I had to " group the commands in parens to make the chained commands run in the " background. - let l:ctags_cmd = "!(ctags --c-types=+l --c++-types=+l --exclude=*.md --exclude=*.txt --exclude=*.config --exclude=*.css --exclude=*.html --exclude=*.htm --exclude=*.json " . g:campo_custom_ctags_args . " -R -o newtags; mv newtags tags) &" + let l:ctags_cmd = "!(ctags --c-types=+l --c++-types=+l --exclude=*.md --exclude=*.txt --exclude=*.config --exclude=*.css --exclude=*.html --exclude=*.htm --exclude=*.json --exclude=node_modules --exclude=.git --exclude=.cache " . g:campo_custom_ctags_args . " -R -o newtags; mv newtags tags) &" exec l:ctags_cmd | redraw! endfun " Generate ctags on save.