tags.txt 615 B

12345678910111213141516171819
  1. Generating a tags file
  2. ======================
  3. If you need a tags file so that you can jump around Moodle code
  4. easily in your editor (eg vim or emacs), you can generate one:
  5. Exuberant ctags (default on Linux, can be compiled on other platforms):
  6. ----------------------------------------------------------------------
  7. ctags -R --languages=php --php-kinds=f \
  8. --regex-PHP='/abstract +class +([^ ]*)/\1/c/' \
  9. --regex-PHP='/interface +([^ ]*)/\1/c/' \
  10. --regex-PHP='/(public |static |abstract |protected |private )+ *function +([^ (]*)/\2/f/'
  11. BSD ctags (Default on Mac OS X):
  12. -------------------------------
  13. (TODO)