" Author: Eric Van Dewoestine " " Description: {{{ " see http://eclim.org/vim/xml/validate.html " " License: " " Copyright (C) 2005 - 2010 Eric Van Dewoestine " " This program is free software: you can redistribute it and/or modify " it under the terms of the GNU General Public License as published by " the Free Software Foundation, either version 3 of the License, or " (at your option) any later version. " " This program is distributed in the hope that it will be useful, " but WITHOUT ANY WARRANTY; without even the implied warranty of " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the " GNU General Public License for more details. " " You should have received a copy of the GNU General Public License " along with this program. If not, see . " " }}} " Global Variables {{{ if !exists("g:EclimXmlValidate") let g:EclimXmlValidate = 1 endif if !exists('g:EclimSgmlCompleteEndTag') let g:EclimSgmlCompleteEndTag = 1 endif " }}} " Options {{{ setlocal completefunc=eclim#xml#complete#CodeComplete " }}} " Autocmds {{{ if g:EclimXmlValidate augroup eclim_xml autocmd! BufWritePost autocmd BufWritePost call eclim#xml#validate#Validate('', 1) augroup END endif " }}} " Mappings {{{ if g:EclimSgmlCompleteEndTag imap / =eclim#sgml#util#CompleteEndTag() endif " }}} " Command Declarations {{{ if !exists(":Validate") command -nargs=0 -complete=file -bang -buffer Validate \ :call eclim#xml#validate#Validate(0, '') command -nargs=? -buffer DtdDefinition \ :call eclim#xml#definition#DtdDefinition('') command -nargs=? -buffer XsdDefinition \ :call eclim#xml#definition#XsdDefinition('') endif if !exists(":XmlFormat") "command -buffer -range XmlFormat :call eclim#xml#format#Format(, ) command -buffer XmlFormat :call eclim#xml#format#Format() endif " }}} " vim:ft=vim:fdm=marker