Vim plugins, tips and tricks for developing Drupal

I am looking for useful scripts, vim configurations and add-ons for developing Drupal with Vim.

I am particularly interested in experiments with various scenarios, personal favorites and so on.

From Useful Vim Plugins for Web Development and Design (php, html, css, javascript)?

  • surround.vim to wrap text in HTML tags
  • jslint.vim for checking JavaScript errors and invalid methods using JSLint
  • jshint.vim to check for JavaScript errors and incorrect methods for working with JSHint (less cruel than JSLint)
  • http://www.vim.org/scripts/ script.php? script_id = 1623 for automatically folding PHP
  • Syntastic for automatic syntax checking, for example. Php
  • Exuberant ctags for tagging a large array of languages.
  • Taglist Helps to view / navigate the source, displays the call signature in the status area.

  • Snipmate snipmate with Drupal texmate bundle .

+6
vim drupal
source share
2 answers

T-Command kicks ass and not just for Drupal development. You will love it. Watch the video.

https://wincent.com/products/command-t

+1
source share

Here is the link to my .vimrc file. Essentially For Drupal:

  • contains the hotkey ([ctrl] + [n]) for "drush cc all".
  • Associates .install.module and .inc files with php syntax highlighting.
  • Checks php syntax before saving file.
+3
source share

All Articles