DISQUS

Rob's Cogitations: Using Vim and Snipmate with Django

  • Rob Hudson · 3 months ago
    A few have asked what my Vim color scheme is and where to find it. It's by Armin Ronacher here: http://www.vim.org/scripts/script.php?script_id...
  • Jean-Nicolas · 2 months ago
    Love the snippets! However, I noticed that... by setting the filetype to "python.django" it breaks TagList (i.e. TagList no longer shows tags for python files...). Any idea if there's a way to have TagList treat python.django files as if they were python files?
  • epcim · 2 months ago
    For django and vim I use - http://slipperysnippets.blogspot.com/
  • Dustin · 1 month ago
    How did you get the spaces and linebreaks showing in that format?
  • Rob Hudson · 3 weeks ago
    I have this line in my ~/.vimrc:

    set list listchars=tab:›\ ,trail:·,eol:¬ " mark trailing white space
  • Dustin · 3 weeks ago
    Thanks Rob!