view runtime/indent/docbk.vim @ 26968:014c9414ce02 v8.2.4013

patch 8.2.4013: build failure without the spell feature Commit: https://github.com/vim/vim/commit/e60b3c47d701e73ecbadb1b9a12bf82010cadae8 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 5 20:40:34 2022 +0000 patch 8.2.4013: build failure without the spell feature Problem: Build failure without the spell feature. Solution: Adjust #ifdefs.
author Bram Moolenaar <Bram@vim.org>
date Wed, 05 Jan 2022 21:45:03 +0100
parents 1218c5353e2b
children
line wrap: on
line source

" Vim indent file
" Language:    	    DocBook Documentation Format
" Previous Maintainer:  Nikolai Weibull <now@bitwi.se>
" Latest Revision:      2006-04-19

if exists("b:did_indent")
  finish
endif

" Same as XML indenting for now.
runtime! indent/xml.vim

if exists('*XmlIndentGet')
  setlocal indentexpr=XmlIndentGet(v:lnum,0)
endif