1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-22 01:35:11 +01:00
vim/runtime/indent/docbk.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
336 B
VimL
Raw Permalink Normal View History

2004-06-13 20:20:40 +00:00
" Vim indent file
2017-03-05 17:04:09 +01:00
" Language: DocBook Documentation Format
" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
" Latest Revision: 2006-04-19
2004-06-13 20:20:40 +00:00
2005-06-23 22:36:45 +00:00
if exists("b:did_indent")
2005-06-29 22:40:58 +00:00
finish
2005-06-23 22:36:45 +00:00
endif
2004-06-13 20:20:40 +00:00
" Same as XML indenting for now.
runtime! indent/xml.vim
2005-06-23 22:36:45 +00:00
if exists('*XmlIndentGet')
setlocal indentexpr=XmlIndentGet(v:lnum,0)
endif