Changes between Version 30 and Version 31 of UsingVimWithDjango


Ignore:
Timestamp:
Dec 15, 2006, 3:15:23 PM (18 years ago)
Author:
Nathaniel Whiteinge
Comment:

taglist vim plugin entry

Legend:

Unmodified
Added
Removed
Modified
  • UsingVimWithDjango

    v30 v31  
    100100Such a structure can also be created by using the build in '\C' command which will recurse through the whole directory tree.
    101101
     102=== Tag List ===
     103
     104The [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
     106Additionally, 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{{{
     109djvim() {
     110     gvim "+cd $1" "+TlistAddFilesRecursive . [^_]*py\|*html\|*css" +TlistOpen
     111}
     112}}}
     113
    102114== Vim/IDE ==
    103115=== PIDA ===
Back to Top