dotfiles/vim/bundle/eclim/indent/html.vim

181 lines
5.5 KiB
VimL

" Author: Eric Van Dewoestine
"
" Description: {{{
" Html indent file using IndentAnything.
"
" License:
"
" Copyright (C) 2005 - 2014 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 <http://www.gnu.org/licenses/>.
"
" }}}
if &indentexpr =~ 'EclimGetHtmlIndent' ||
\ (!exists('b:disableOverride') && exists('g:EclimHtmlIndentDisabled'))
finish
endif
let b:disableOverride = 1
runtime! indent/javascript.vim
runtime! indent/css.vim
setlocal indentexpr=EclimGetHtmlIndent(v:lnum)
setlocal indentkeys+=>,},0),0},),;,0{,!^F,o,O
if !exists('g:EclimHtmlUnclosedTags')
let g:EclimHtmlUnclosedTags = ['br', 'img', 'input']
endif
" EclimGetHtmlIndent(lnum) {{{
function! EclimGetHtmlIndent(lnum)
let line = line('.')
let col = line('.')
let adj = 0
let scriptstart = search('<script\>', 'bcW')
if scriptstart > 0
let scriptstart = search('>', 'cW', scriptstart)
let scriptend = search('</script\s*>', 'cW')
endif
call cursor(line, col)
let stylestart = search('<style\>', 'bcW')
if stylestart > 0
let stylestart = search('>', 'cW', stylestart)
let styleend = search('</style\s*>', 'cW')
endif
call cursor(line, col)
" Inside <script> tags... let javascript indent file do the work.
let line = getline(scriptstart)
let js_type = "type\\s*=\\s*['\"]\\(text\\|application\\)/\\(java\\|ecma\\)script['\"]"
if scriptstart > 0 && scriptstart < a:lnum &&
\ (scriptend == 0 || (scriptend > scriptstart && a:lnum < scriptend)) &&
\ (line !~ 'type\s*=' || line =~ js_type)
call JavascriptIndentAnythingSettings()
if a:lnum == scriptstart + 1
let adj = &sw
endif
return EclimGetJavascriptIndent(a:lnum) + adj
" Inside <style> tags... let css indent file do the work.
elseif stylestart > 0 && stylestart < a:lnum &&
\ (styleend == 0 || (styleend > stylestart && a:lnum < styleend))
call CssIndentAnythingSettings()
if a:lnum == stylestart + 1
let adj = &sw
endif
return EclimGetCssIndent(a:lnum) + adj
" Indenting html code, do our work.
else
let l:Settings = exists('b:indent_settings') ?
\ function(b:indent_settings) : function('HtmlIndentAnythingSettings')
call l:Settings()
let adj = s:HtmlIndentAttributeWrap(a:lnum) * &sw
let prevlnum = prevnonblank(a:lnum - 1)
let prevline = getline(prevlnum)
" handle case where previous line is a multi-line comment (<!-- -->) on one
" line, which IndentAnything doesn't handle properly.
if prevline =~ '^\s\+<!--.\{-}-->'
let adj = indent(prevlnum)
endif
" handle non-parent tags without '/>'
" NOTE: the '?' in this regex is to combat issues with php
let noindent = exists('b:EclimHtmlUnclosedTags') ?
\ b:EclimHtmlUnclosedTags : g:EclimHtmlUnclosedTags
let noindent_pattern = '<\(' . join(noindent, '\|') . '\)[^/?]\{-}>'
if prevline =~? noindent_pattern
let line = tolower(prevline)
let occurrences = 0
while line =~ noindent_pattern
let occurrences += 1
let line = substitute(line, noindent_pattern, '', '')
endwhile
let adj = 0 - (&sw * occurrences)
endif
endif
return IndentAnything() + adj
endfunction " }}}
" HtmlIndentAnythingSettings() {{{
function! HtmlIndentAnythingSettings()
" Syntax name REs for comments and strings.
let b:blockCommentRE = 'htmlComment'
let b:commentRE = b:blockCommentRE
let b:stringRE = 'htmlString'
let b:singleQuoteStringRE = b:stringRE
let b:doubleQuoteStringRE = b:stringRE
" Overwrites option for other filetypes that have html indenting (eg. php)
"setlocal comments=sr:<!--,m:-,e:-->
"let b:blockCommentStartRE = '<!--'
"let b:blockCommentMiddleRE = '-'
"let b:blockCommentEndRE = '-->'
"let b:blockCommentMiddleExtra = 2
" Indent another level for each non-closed element tag.
let b:indentTrios = [
\ [ '<\w', '', '\(/>\|</\)' ],
\ ]
"let b:lineContList = [
" \ {'pattern' : '^<!DOCTYPE.*[^>]\s*$' },
" \ ]
endfunction " }}}
" HtmlIndentAttributeWrap(lnum) {{{
" Function which indents line continued attributes an extra level for
" readability.
function! <SID>HtmlIndentAttributeWrap(lnum)
let line = line('.')
let col = col('.')
let adj = 0
try
" mover cursor to start of line to avoid matching start tag on first line
" of nested content.
call cursor(line, 1)
let open = search('<\w\|<!DOCTYPE', 'bW')
if open > 0
let close = search('>', 'cW')
if open != close
" continuation line
if close == 0 || close >= a:lnum
" first continuation line
if a:lnum == open + 1
return 1
endif
" additional continuation lines
return 0
endif
" line after last continuation line
if close != 0 && a:lnum == close + 1
" inner content
return -1
endif
endif
endif
finally
call cursor(line, col)
endtry
endfunction " }}}
" vim:ft=vim:fdm=marker