I did not know how to setup CTAGS. I thought I would share the batch file I created to generate them.
Code: Select all
@echo off
rem Create Ctags procedure
rem file mkRSICTAG.bat
rem run from comand prompt vbusb link with start in dir set to c:\vbusb
rem A
rem create lists of php files for input into EXUBERANT CTAGS
rem source directory project 1
rem dir /b /s R:\*.php > C:\vbusb\rsi\SearchResults1.txt
rem source directory project 2
rem dir /b /s P:\*.php > C:\vbusb\rsi\SearchResults2.txt
rem B backup old CTAG file
rem del back php CTAG file
del C:\CTAG\RSIBIGTAG.jic
rem back existing php CTAG
rem xcopy is not for just one file
copy C:\CTAG\RSIBIGTAG.txt C:\CTAG\RSIBIGTAG.jic /y
rem C
rem use UE CTAGS to create and append CTAGS for 1 and 2 php files
rem 1
"C:\Program Files\IDM Computer Solutions\UltraEdit\GNU\ctags" -f C:\CTAG\RSIBIGTAG.txt -a -R --exclude=.svn --language-force=PHP -L C:\vbusb\rsi\SearchResults1.txt
rem 2
"C:\Program Files\IDM Computer Solutions\UltraEdit\GNU\ctags" -f C:\CTAG\RSIBIGTAG.txt -a -R --exclude=.svn --language-force=PHP -L C:\vbusb\rsi\SearchResults2.txt
Whenever I have to decide between two evils, I always choose the one I haven't tried before. -Mae West