| 102 | === Tag List === |
| 103 | |
| 104 | The [http://vim-taglist.sourceforge.net/ taglist] plugin is probably similar to Project but can also look inside Python files to display classes and functions. (It requires the ctags program installed on your system, which probably comes with most Linuxes and is easily installed via MacPorts (or fink as "exuberant-ctags") on OS X.) |
| 105 | |
| 106 | Additionally, I created a shell-function, inspired by Jeremy Jones, to create a new taglist-list when you pass it the path to a Django project directory: |
| 107 | |
| 108 | {{{ |
| 109 | djvim() { |
| 110 | gvim "+cd $1" "+TlistAddFilesRecursive . [^_]*py\|*html\|*css" +TlistOpen |
| 111 | } |
| 112 | }}} |
| 113 | |