diff .vimrc @ 35:55d2e5c5dad9 ls_dev_2025_09

Working on the factory, it's in a semi working state but obviously not complete
author Luka Sitas <sitas.luka.97@gmail.com>
date Thu, 11 Sep 2025 21:25:51 -0400
parents 827efbf4d73c
children
line wrap: on
line diff
--- a/.vimrc	Wed Sep 10 21:00:47 2025 -0400
+++ b/.vimrc	Thu Sep 11 21:25:51 2025 -0400
@@ -11,6 +11,11 @@
 nnoremap <C-l> :ALECodeAction <cr>
 set mouse=a
 
+function! GeneratePhpCtags()
+	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
+
 function! FixPhpFiles()
  " Save the current cursor position
   let save_cursor = getpos(".")