Setting up and using VIMs Exuberant CTAGS on OSX (MAC)

Submitted by barnettech on

Assuming you have macports install you first type:

port install ctags

Then you generate a ctags file in the root of your Drupal project by typing in:

ctags --langmap=php:.engine.inc.module.theme.install.php --php-kinds=cdfi --languages=php --recurse

type in the following in vim to tell vim to look in the current directory for a tags file and then the parent, and then recursively continue until a tags file is found.

:set tags=./tags; 

Now type in ctrl-] on any function or class name and it will take you to the definition

Here is my .vimrc file for mvim

Submitted by barnettech on

Here is my .vimrc file for mvim, in particular I don't want to forget how to configure Syntastic for Drupal syntax checking in drupal.  If you type in "phpcs -i" you can verify that the drupal sniffer is setup and available.  The output on my screen from phpcs -i is "The installed coding standards are Drupal, MySource, PEAR, PHPCS, PSR1, PSR2, Squiz and Zend"

Great general questions about how the internet works.

Submitted by barnettech on

These are some great questions a student recently emailed to me.  My answers are in green.  Thank you for letting me share your questions!  I've been hearing some of these often, which always says to me, it's time to blog about it :)

Professor,

I have some questions about the terminal application on my mac. I am very confused about the terminology and processes.