docbk.vim 336 B

12345678910111213141516
  1. " Vim indent file
  2. " Language: DocBook Documentation Format
  3. " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
  4. " Latest Revision: 2006-04-19
  5. if exists("b:did_indent")
  6. finish
  7. endif
  8. " Same as XML indenting for now.
  9. runtime! indent/xml.vim
  10. if exists('*XmlIndentGet')
  11. setlocal indentexpr=XmlIndentGet(v:lnum,0)
  12. endif