" Vim indent script for HTML " General: "{{{ " File: html.vim (Vimscript #2075) " Author: Andy Wokula " Last Change: 2013 Jun 12 " Rev Days: 13 " Version: 0.9 " Vim Version: Vim7 " Description: " Improved version of the distributed html indent script, faster on a " range of lines. " " Credits: " indent/html.vim (2006 Jun 05) from J. Zellner " indent/css.vim (2006 Dec 20) from N. Weibull " " History: " 2012 Oct 21 (v0.9) added support for shiftwidth() " 2011 Sep 09 (v0.8) added HTML5 tags (thx to J. Zuckerman) " 2008 Apr 28 (v0.6) revised customization " 2008 Mar 09 (v0.5) fixed 'indk' issue (thx to C.J. Robinson) " }}} " Init Folklore, check user settings (2nd time ++) "{{{ if exists("b:did_indent") finish endif let b:did_indent = 1 setlocal indentexpr=HtmlIndent() setlocal indentkeys=o,O,,<>>,{,},!^F let b:indent = {"lnum": -1} let b:undo_indent = "set inde< indk<| unlet b:indent" " Load Once: if exists("*HtmlIndent") call HtmlIndent_CheckUserSettings() finish endif " Patch 7.3.694 if exists('*shiftwidth') let s:ShiftWidth = function('shiftwidth') else func! s:ShiftWidth() return &shiftwidth endfunc endif let s:cpo_save = &cpo set cpo-=C "}}} func! HtmlIndent_CheckUserSettings() "{{{ if exists("g:html_indent_inctags") call s:AddITags(split(g:html_indent_inctags, ",")) endif if exists("g:html_indent_autotags") call s:RemoveITags(split(g:html_indent_autotags, ",")) endif let indone = {"zero": 0 \,"auto": "indent(prevnonblank(v:lnum-1))" \,"inc": "b:indent.blocktagind + s:ShiftWidth()"} if exists("g:html_indent_script1") let s:js1indent = get(indone, g:html_indent_script1, indone.zero) endif if exists("g:html_indent_style1") let s:css1indent = get(indone, g:html_indent_style1, indone.zero) endif endfunc "}}} " Init Script Vars "{{{ let s:usestate = 1 let s:css1indent = 0 let s:js1indent = 0 " not to be changed: let s:endtags = [0,0,0,0,0,0,0,0] " some places unused let s:newstate = {} let s:countonly = 0 "}}} func! s:AddITags(taglist) "{{{ for itag in a:taglist let s:indent_tags[itag] = 1 let s:indent_tags['/'.itag] = -1 endfor endfunc "}}} func! s:AddBlockTag(tag, id, ...) "{{{ if !(a:id >= 2 && a:id < 2+len(s:endtags)) return endif let s:indent_tags[a:tag] = a:id if a:0 == 0 let s:indent_tags['/'.a:tag] = -a:id let s:endtags[a:id-2] = "" else let s:indent_tags[a:1] = -a:id let s:endtags[a:id-2] = a:1 endif endfunc "}}} func! s:RemoveITags(taglist) "{{{ " remove itags (protect blocktags from being removed) for itag in a:taglist if !has_key(s:indent_tags, itag) || s:indent_tags[itag] != 1 continue endif unlet s:indent_tags[itag] if itag =~ '^\w\+$' unlet s:indent_tags["/".itag] endif endfor endfunc "}}} " Add Indent Tags: {{{ if !exists("s:indent_tags") let s:indent_tags = {} endif " old tags: call s:AddITags(['a', 'abbr', 'acronym', 'address', 'b', 'bdo', 'big', \ 'blockquote', 'button', 'caption', 'center', 'cite', 'code', 'colgroup', \ 'del', 'dfn', 'dir', 'div', 'dl', 'em', 'fieldset', 'font', 'form', \ 'frameset', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'i', 'iframe', 'ins', 'kbd', \ 'label', 'legend', 'map', 'menu', 'noframes', 'noscript', 'object', 'ol', \ 'optgroup', 'q', 's', 'samp', 'select', 'small', 'span', 'strong', 'sub', \ 'sup', 'table', 'textarea', 'title', 'tt', 'u', 'ul', 'var', 'th', 'td', \ 'tr', 'tfoot', 'thead']) " tags added 2011 Sep 09 (especially HTML5 tags): call s:AddITags(['area', 'article', 'aside', 'audio', 'bdi', 'canvas', \ 'command', 'datalist', 'details', 'embed', 'figure', 'footer', \ 'header', 'group', 'keygen', 'mark', 'math', 'meter', 'nav', 'output', \ 'progress', 'ruby', 'section', 'svg', 'texture', 'time', 'video', \ 'wbr', 'text']) "}}} " Add Block Tags: contain alien content "{{{ call s:AddBlockTag('pre', 2) call s:AddBlockTag('script', 3) call s:AddBlockTag('style', 4) call s:AddBlockTag('') "}}} func! s:CountITags(...) "{{{ " relative indent steps for current line [unit &sw]: let s:curind = 0 " relative indent steps for next line [unit &sw]: let s:nextrel = 0 if a:0==0 let s:block = s:newstate.block let tmpline = substitute(s:curline, '<\zs\/\=\w\+\>\|', '\=s:CheckTag(submatch(0))', 'g') if s:block == 3 let s:newstate.scripttype = s:GetScriptType(matchstr(tmpline, '\C.*\zs[^>]*')) endif let s:newstate.block = s:block else let s:block = 0 " assume starting outside of a block let s:countonly = 1 " don't change state let tmpline = substitute(s:altline, '<\zs\/\=\w\+\>\|', '\=s:CheckTag(submatch(0))', 'g') let s:countonly = 0 endif endfunc "}}} func! s:CheckTag(itag) "{{{ " "tag" or "/tag" or "" let ind = get(s:indent_tags, a:itag) if ind == -1 " closing tag if s:block != 0 " ignore itag within a block return "foo" endif if s:nextrel == 0 let s:curind -= 1 else let s:nextrel -= 1 endif " if s:curind >= 1 " let s:curind -= 1 " else " let s:nextrel -= 1 " endif elseif ind == 1 " opening tag if s:block != 0 return "foo" endif let s:nextrel += 1 elseif ind != 0 " block-tag (opening or closing) return s:Blocktag(a:itag, ind) endif " else ind==0 (other tag found): keep indent return "foo" " no matter endfunc "}}} func! s:Blocktag(blocktag, ind) "{{{ if a:ind > 0 " a block starts here if s:block != 0 " already in a block (nesting) - ignore " especially ignore comments after other blocktags return "foo" endif let s:block = a:ind " block type if s:countonly return "foo" endif let s:newstate.blocklnr = v:lnum " save allover indent for the endtag let s:newstate.blocktagind = b:indent.baseindent + (s:nextrel + s:curind) * s:ShiftWidth() if a:ind == 3 return "SCRIPT" " all except this must be lowercase " line is to be checked again for the type attribute endif else let s:block = 0 " we get here if starting and closing block-tag on same line endif return "foo" endfunc "}}} func! s:GetScriptType(str) "{{{ if a:str == "" || a:str =~ "java" return "javascript" else return "" endif endfunc "}}} func! s:FreshState(lnum) "{{{ " Look back in the file (lines 1 to a:lnum-1) to calc a state for line " a:lnum. A state is to know ALL relevant details about the lines " 1..a:lnum-1, initial calculating (here!) can be slow, but updating is " fast (incremental). " State: " lnum last indented line == prevnonblank(a:lnum - 1) " block = 0 a:lnum located within special tag: 0:none, 2:
,
    "			3: