diff publishable/vimrc @ 1:7f5276e3dc83 default tip

improving tag generation
author Luka Sitas <sitas.luka.97@gmail.com>
date Tue, 09 Sep 2025 15:58:49 -0400
parents 8b04d7d6d91a
children
line wrap: on
line diff
--- a/publishable/vimrc	Tue Aug 19 20:36:03 2025 -0400
+++ b/publishable/vimrc	Tue Sep 09 15:58:49 2025 -0400
@@ -8,7 +8,7 @@
 colorscheme desert
 
 function! GeneratePhpCtags()
-	let command = 'ctags -R --fields=+aimS --php-kinds=cdfint --languages=php --extras=+q --tag-relative=yes --exclude=".git" --exclude=".hg" --exclude="vendor" --exclude="node_modules" --exclude="composer.phar" --totals=yes'
+	let command = 'ctags -R --fields=+aimS --php-kinds=cdfint --languages=php --extras=+q --tag-relative=yes --exclude=".git" --exclude=".hg" --exclude="node_modules" --exclude="composer.phar" --totals=yes'
 	let output = system(command)
 endfunction