Vim Tips Wiki
Advertisement

Use this page to discuss script 1487 django: syntax highlighting for Django templates

  • Add constructive comments, bug reports, or discuss improvements (see the guideline).
  • Do not document the script here (the author should do that on vim.org).
  • This page may be out of date: check the script's vim.org page above, and its release notes.

Comments[]

I wanted to use folds with the htmldjango syntax file, but the curly brackets used for template variables were clashing with the default fold markers ("{{{,}}}"). I just added the "oneline" option to line 30 of htmldjango.vim (V. 2007 Jan 26). Eg.:

  syn region djangoVarBlock start="{{" end="}}" contains=djangoFilter,djangoArgument,djangoVarError display containedin=ALLBUT,@djangoBlocks

Became:

  syn region djangoVarBlock start="{{" end="}}" oneline contains=djangoFilter,djangoArgument,djangoVarError display containedin=ALLBUT,@djangoBlocks
Advertisement