| 
									
										
										
										
											2019-10-26 19:53:45 +02:00
										 |  |  | " Language: XML | 
					
						
							|  |  |  | " Maintainer: Christian Brabandt <cb@256bit.org> | 
					
						
							|  |  |  | " Repository: https://github.com/chrisbra/vim-xml-ftplugin | 
					
						
							|  |  |  | " Previous Maintainer: Johannes Zellner <johannes@zellner.org> | 
					
						
							| 
									
										
										
										
											2020-11-29 14:36:24 +01:00
										 |  |  | " Last Changed: 2020 Nov 4th | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  | " Last Change: | 
					
						
							| 
									
										
										
										
											2020-11-29 14:36:24 +01:00
										 |  |  | " 20200529 - Handle empty closing tags correctly | 
					
						
							| 
									
										
										
										
											2019-12-03 22:49:09 +01:00
										 |  |  | " 20191202 - Handle docbk filetype | 
					
						
							| 
									
										
										
										
											2019-07-31 21:07:14 +02:00
										 |  |  | " 20190726 - Correctly handle non-tagged data | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  | " 20190204 - correctly handle wrap tags | 
					
						
							|  |  |  | "            https://github.com/chrisbra/vim-xml-ftplugin/issues/5 | 
					
						
							| 
									
										
										
										
											2019-02-03 15:27:20 +01:00
										 |  |  | " 20190128 - Make sure to find previous tag | 
					
						
							|  |  |  | "            https://github.com/chrisbra/vim-xml-ftplugin/issues/4 | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  | " 20181116 - Fix indentation when tags start with a colon or an underscore | 
					
						
							|  |  |  | "            https://github.com/vim/vim/pull/926 | 
					
						
							|  |  |  | " 20181022 - Do not overwrite indentkeys setting | 
					
						
							|  |  |  | "            https://github.com/chrisbra/vim-xml-ftplugin/issues/1 | 
					
						
							|  |  |  | " 20180724 - Correctly indent xml comments https://github.com/vim/vim/issues/3200 | 
					
						
							|  |  |  | " | 
					
						
							|  |  |  | " Notes: | 
					
						
							|  |  |  | "   1) does not indent pure non-xml code (e.g. embedded scripts) | 
					
						
							|  |  |  | "       2) will be confused by unbalanced tags in comments | 
					
						
							|  |  |  | "       or CDATA sections. | 
					
						
							|  |  |  | "       2009-05-26 patch by Nikolai Weibull | 
					
						
							|  |  |  | " TODO:     implement pre-like tags, see xml_indent_open / xml_indent_close | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | " Only load this indent file when no other was loaded. | 
					
						
							|  |  |  | if exists("b:did_indent") | 
					
						
							|  |  |  |     finish | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | let b:did_indent = 1 | 
					
						
							| 
									
										
										
										
											2012-05-18 21:49:28 +02:00
										 |  |  | let s:keepcpo= &cpo | 
					
						
							|  |  |  | set cpo&vim | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | " [-- local settings (must come before aborting the script) --] | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  | " Attention: Parameter use_syntax_check is used by the docbk.vim indent script | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | setlocal indentexpr=XmlIndentGet(v:lnum,1) | 
					
						
							| 
									
										
										
										
											2018-11-04 14:45:49 +01:00
										 |  |  | setlocal indentkeys=o,O,*<Return>,<>>,<<>,/,{,},!^F | 
					
						
							| 
									
										
										
										
											2019-07-31 21:07:14 +02:00
										 |  |  | " autoindent: used when the indentexpr returns -1 | 
					
						
							|  |  |  | setlocal autoindent | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-24 13:18:38 +00:00
										 |  |  | let b:undo_indent = "setl ai< inde< indk<" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | if !exists('b:xml_indent_open') | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |     let b:xml_indent_open = '.\{-}<[:A-Z_a-z]' | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  |     " pre tag, e.g. <address> | 
					
						
							|  |  |  |     " let b:xml_indent_open = '.\{-}<[/]\@!\(address\)\@!' | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if !exists('b:xml_indent_close') | 
					
						
							| 
									
										
										
										
											2020-11-29 14:36:24 +01:00
										 |  |  |     let b:xml_indent_close = '.\{-}</\|/>.\{-}' | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  |     " end pre tag, e.g. </address> | 
					
						
							|  |  |  |     " let b:xml_indent_close = '.\{-}</\(address\)\@!' | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-24 13:18:38 +00:00
										 |  |  | if !exists('b:xml_indent_continuation_filetype') | 
					
						
							|  |  |  |     let b:xml_indent_continuation_filetype = 'xml' | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-25 17:49:10 +02:00
										 |  |  | let &cpo = s:keepcpo | 
					
						
							|  |  |  | unlet s:keepcpo | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | " [-- finish, if the function already exists --] | 
					
						
							| 
									
										
										
										
											2012-07-25 17:49:10 +02:00
										 |  |  | if exists('*XmlIndentGet') | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |     finish | 
					
						
							| 
									
										
										
										
											2012-07-25 17:49:10 +02:00
										 |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | let s:keepcpo= &cpo | 
					
						
							|  |  |  | set cpo&vim | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | fun! <SID>XmlIndentWithPattern(line, pat) | 
					
						
							|  |  |  |     let s = substitute('x'.a:line, a:pat, "\1", 'g') | 
					
						
							|  |  |  |     return strlen(substitute(s, "[^\1].*$", '', '')) | 
					
						
							|  |  |  | endfun | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | " [-- check if it's xml --] | 
					
						
							|  |  |  | fun! <SID>XmlIndentSynCheck(lnum) | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |     if &syntax != '' | 
					
						
							|  |  |  |         let syn1 = synIDattr(synID(a:lnum, 1, 1), 'name') | 
					
						
							|  |  |  |         let syn2 = synIDattr(synID(a:lnum, strlen(getline(a:lnum)) - 1, 1), 'name') | 
					
						
							|  |  |  |         if syn1 != '' && syn1 !~ 'xml' && syn2 != '' && syn2 !~ 'xml' | 
					
						
							|  |  |  |             " don't indent pure non-xml code | 
					
						
							|  |  |  |             return 0 | 
					
						
							|  |  |  |         endif | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  |     endif | 
					
						
							|  |  |  |     return 1 | 
					
						
							|  |  |  | endfun | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | " [-- return the sum of indents of a:lnum --] | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  | fun! <SID>XmlIndentSum(line, style, add) | 
					
						
							| 
									
										
										
										
											2020-11-29 14:36:24 +01:00
										 |  |  |     if <SID>IsXMLContinuation(a:line) && a:style == 0 && !<SID>IsXMLEmptyClosingTag(a:line) | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  |         " no complete tag, add one additional indent level | 
					
						
							|  |  |  |         " but only for the current line | 
					
						
							|  |  |  |         return a:add + shiftwidth() | 
					
						
							|  |  |  |     elseif <SID>HasNoTagEnd(a:line) | 
					
						
							|  |  |  |         " no complete tag, return initial indent | 
					
						
							|  |  |  |         return a:add | 
					
						
							|  |  |  |     endif | 
					
						
							|  |  |  |     if a:style == match(a:line, '^\s*</') | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |         return (shiftwidth() * | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  |         \  (<SID>XmlIndentWithPattern(a:line, b:xml_indent_open) | 
					
						
							|  |  |  |         \ - <SID>XmlIndentWithPattern(a:line, b:xml_indent_close) | 
					
						
							|  |  |  |         \ - <SID>XmlIndentWithPattern(a:line, '.\{-}/>'))) + a:add | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |         return a:add | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  |     endif | 
					
						
							|  |  |  | endfun | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  | " Main indent function | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | fun! XmlIndentGet(lnum, use_syntax_check) | 
					
						
							|  |  |  |     " Find a non-empty line above the current line. | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  |     if prevnonblank(a:lnum - 1) == 0 | 
					
						
							|  |  |  |         " Hit the start of the file, use zero indent. | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |         return 0 | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  |     endif | 
					
						
							| 
									
										
										
										
											2019-02-03 15:27:20 +01:00
										 |  |  |     " Find previous line with a tag (regardless whether open or closed, | 
					
						
							| 
									
										
										
										
											2019-07-31 21:07:14 +02:00
										 |  |  |     " but always restrict the match to a line before the current one | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  |     " Note: xml declaration: <?xml version="1.0"?> | 
					
						
							|  |  |  |     "       won't be found, as it is not a legal tag name | 
					
						
							| 
									
										
										
										
											2019-07-31 21:07:14 +02:00
										 |  |  |     let ptag_pattern = '\%(.\{-}<[/:A-Z_a-z]\)'. '\%(\&\%<'. a:lnum .'l\)' | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  |     let ptag = search(ptag_pattern, 'bnW') | 
					
						
							|  |  |  |     " no previous tag | 
					
						
							|  |  |  |     if ptag == 0 | 
					
						
							|  |  |  |         return 0 | 
					
						
							|  |  |  |     endif | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-31 21:07:14 +02:00
										 |  |  |     let pline = getline(ptag) | 
					
						
							|  |  |  |     let pind  = indent(ptag) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     let syn_name_start = '' " Syntax element at start of line (excluding whitespace) | 
					
						
							|  |  |  |     let syn_name_end = ''   " Syntax element at end of line | 
					
						
							|  |  |  |     let curline = getline(a:lnum) | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  |     if a:use_syntax_check | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  |         let check_lnum = <SID>XmlIndentSynCheck(ptag) | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |         let check_alnum = <SID>XmlIndentSynCheck(a:lnum) | 
					
						
							|  |  |  |         if check_lnum == 0 || check_alnum == 0 | 
					
						
							|  |  |  |             return indent(a:lnum) | 
					
						
							|  |  |  |         endif | 
					
						
							| 
									
										
										
										
											2019-07-31 21:07:14 +02:00
										 |  |  |         let syn_name_end   = synIDattr(synID(a:lnum, strlen(curline) - 1, 1), 'name') | 
					
						
							|  |  |  |         let syn_name_start = synIDattr(synID(a:lnum, match(curline, '\S') + 1, 1), 'name') | 
					
						
							| 
									
										
										
										
											2020-11-29 14:36:24 +01:00
										 |  |  |         let prev_syn_name_end   = synIDattr(synID(ptag, strlen(pline) - 1, 1), 'name') | 
					
						
							|  |  |  |         " not needed (yet?) | 
					
						
							|  |  |  |         " let prev_syn_name_start = synIDattr(synID(ptag, match(pline, '\S') + 1, 1), 'name') | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  |     endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-31 21:07:14 +02:00
										 |  |  |     if syn_name_end =~ 'Comment' && syn_name_start =~ 'Comment' | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |         return <SID>XmlIndentComment(a:lnum) | 
					
						
							| 
									
										
										
										
											2019-12-03 22:49:09 +01:00
										 |  |  |     elseif empty(syn_name_start) && empty(syn_name_end) && a:use_syntax_check | 
					
						
							| 
									
										
										
										
											2019-07-31 21:07:14 +02:00
										 |  |  |         " non-xml tag content: use indent from 'autoindent' | 
					
						
							| 
									
										
										
										
											2020-11-29 14:36:24 +01:00
										 |  |  |         if pline =~ b:xml_indent_close | 
					
						
							|  |  |  |             return pind | 
					
						
							|  |  |  |         elseif !empty(prev_syn_name_end) | 
					
						
							|  |  |  |             " only indent by an extra shiftwidth, if the previous line ends | 
					
						
							|  |  |  |             " with an XML like tag | 
					
						
							|  |  |  |            return pind + shiftwidth() | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             " no extra indent, looks like a text continuation line | 
					
						
							|  |  |  |            return pind | 
					
						
							|  |  |  |         endif | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |     endif | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |     " Get indent from previous tag line | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  |     let ind = <SID>XmlIndentSum(pline, -1, pind) | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |     " Determine indent from current line | 
					
						
							| 
									
										
										
										
											2019-07-31 21:07:14 +02:00
										 |  |  |     let ind = <SID>XmlIndentSum(curline, 0, ind) | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  |     return ind | 
					
						
							|  |  |  | endfun | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  | func! <SID>IsXMLContinuation(line) | 
					
						
							|  |  |  |     " Checks, whether or not the line matches a start-of-tag | 
					
						
							| 
									
										
										
										
											2021-12-24 13:18:38 +00:00
										 |  |  |     return a:line !~ '^\s*<' && &ft =~# b:xml_indent_continuation_filetype | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  | endfunc | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func! <SID>HasNoTagEnd(line) | 
					
						
							|  |  |  |     " Checks whether or not the line matches '>' (so finishes a tag) | 
					
						
							|  |  |  |     return a:line !~ '>\s*$' | 
					
						
							|  |  |  | endfunc | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-29 14:36:24 +01:00
										 |  |  | func! <SID>IsXMLEmptyClosingTag(line) | 
					
						
							|  |  |  |     " Checks whether the line ends with an empty closing tag such as <lb/> | 
					
						
							|  |  |  |     return a:line =~? '<[^>]*/>\s*$' | 
					
						
							|  |  |  | endfunc | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  | " return indent for a commented line, | 
					
						
							| 
									
										
										
										
											2019-07-31 21:07:14 +02:00
										 |  |  | " the middle part might be indented one additional level | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  | func! <SID>XmlIndentComment(lnum) | 
					
						
							| 
									
										
										
										
											2020-11-29 14:36:24 +01:00
										 |  |  |     let ptagopen = search('.\{-}<[:A-Z_a-z]\_[^/]\{-}>.\{-}', 'bnW') | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  |     let ptagclose = search(b:xml_indent_close, 'bnW') | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |     if getline(a:lnum) =~ '<!--' | 
					
						
							|  |  |  |         " if previous tag was a closing tag, do not add | 
					
						
							|  |  |  |         " one additional level of indent | 
					
						
							|  |  |  |         if ptagclose > ptagopen && a:lnum > ptagclose | 
					
						
							| 
									
										
										
										
											2020-11-29 14:36:24 +01:00
										 |  |  |             " If the previous tag was closed on the same line as it was | 
					
						
							|  |  |  |             " declared, we should indent with its indent level. | 
					
						
							|  |  |  |             if !<SID>IsXMLContinuation(getline(ptagclose)) | 
					
						
							|  |  |  |                 return indent(ptagclose) | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 return indent(ptagclose) - shiftwidth() | 
					
						
							|  |  |  |             endif | 
					
						
							|  |  |  |         elseif ptagclose == ptagopen | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |             return indent(ptagclose) | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             " start of comment, add one indentation level | 
					
						
							|  |  |  |             return indent(ptagopen) + shiftwidth() | 
					
						
							|  |  |  |         endif | 
					
						
							|  |  |  |     elseif getline(a:lnum) =~ '-->' | 
					
						
							|  |  |  |         " end of comment, same as start of comment | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  |         return indent(search('<!--', 'bnW')) | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |     else | 
					
						
							|  |  |  |         " middle part of comment, add one additional level | 
					
						
							| 
									
										
										
										
											2019-03-24 15:09:13 +01:00
										 |  |  |         return indent(search('<!--', 'bnW')) + shiftwidth() | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  |     endif | 
					
						
							|  |  |  | endfunc | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-18 21:49:28 +02:00
										 |  |  | let &cpo = s:keepcpo | 
					
						
							|  |  |  | unlet s:keepcpo | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-18 21:41:50 +01:00
										 |  |  | " vim:ts=4 et sts=-1 sw=0 |