MDL-58518 block_myoverview: use user's midnight for sort by courses
[moodle.git] / tags.txt
CommitLineData
1745eab0 1Generating a tags file
2======================
3
e5e50970 4If you need a tags file so that you can jump around Moodle code
1745eab0 5easily in your editor (eg vim or emacs), you can generate one:
6
7Exuberant ctags (default on Linux, can be compiled on other platforms):
8----------------------------------------------------------------------
9
38535ab8
SC
10ctags -R --languages=php --php-kinds=f \
11--regex-PHP='/abstract +class +([^ ]*)/\1/c/' \
12--regex-PHP='/interface +([^ ]*)/\1/c/' \
13--regex-PHP='/(public |static |abstract |protected |private )+ *function +([^ (]*)/\2/f/'
1745eab0 14
15BSD ctags (Default on Mac OS X):
16-------------------------------
17
18 (TODO)