Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.38 KB | None | 0 0
  1. #!/bin/bash
  2. cd /var/www/bg
  3. exec ctags-exuberant -f ~/.vim/mytags/tags \
  4. -h ".php" -R \
  5. --exclude="\.hg" \
  6. --exclude="*.js" \
  7. --exclude="*.tpl.php" \
  8. --totals=yes \
  9. --tag-relative=yes \
  10. --PHP-kinds=+cf \
  11. --regex-PHP='/abstract class ([^ ]*)/\1/c/' \
  12. --regex-PHP='/interface ([^ ]*)/\1/c/' \
  13. --regex-PHP='/(public |static |abstract |protected |private )+function ([^ (]*)/\2/f/'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement